Thanks for you great blog post on transfer learning using the extimator API! It really helped me to understand how to use it.
When following the example from tensorflow hub: retrain.py
What they did differently here is that they cache the bottlenecks on each image first and store them as text files, specific for the module_spec it they were run with.
cache_bottlenecks
It's really great because creating these bottlenecks just has to be done once. Subsequent trainings are then way quicker and you can quickly experiment as only the actual training has to be done.
Could you show an example how to do that using the high level functions you are using?
Thanks for you great blog post on transfer learning using the extimator API! It really helped me to understand how to use it.
When following the example from tensorflow hub: retrain.py
What they did differently here is that they cache the bottlenecks on each image first and store them as text files, specific for the module_spec it they were run with.
cache_bottlenecks
It's really great because creating these bottlenecks just has to be done once. Subsequent trainings are then way quicker and you can quickly experiment as only the actual training has to be done.
Could you show an example how to do that using the high level functions you are using?