enter image description hereso I try to do this macOS tutorial to build an image classifier with tensorflow on a Windows PC, therefore the following prompt doesn't work in the Windows cmd:
IMAGE_SIZE=224
ARCHITECTURE="mobilenet_0.50_${IMAGE_SIZE}"
python -m scripts.retrain \
--bottleneck_dir=tf_files/bottlenecks \
--model_dir=tf_files/models/"${ARCHITECTURE}" \
--summaries_dir=tf_files/training_summaries/"${ARCHITECTURE}" \
--output_graph=tf_files/retrained_graph.pb \
--output_labels=tf_files/retrained_labels.txt \
--architecture="${ARCHITECTURE}" \
--image_dir=tf_files/YOUR_IMAGE_DIRECTORY_HERE
The tutorial: https://medium.com/@bignikhilreddy/how-to-build-an-insanely-good-image-classifier-in-under-10-minutes-ea3edf411bc8
Hope someone can help me out...