-
Notifications
You must be signed in to change notification settings - Fork 118
Description
Hello everyone, I'm a beginner of TensorFlow (and Machine Learning).
I'd like to use Object Detection with openimages.
I am trying to run your article titled by "Deep Dive into Object Detection with Open Images, using Tensorflow".
https://blog.algorithmia.com/deep-dive-into-object-detection-with-open-images-using-tensorflow/
I have progressed to "Step1: Image Downloading".
Right now, I can't understand how I do set parameters and I am stopping.
Which file do we set at all paths?
Particularly, "datapoints_input_path" in "process_images.py"?
https://github.com/algorithmiaio/sample-apps/blob/master/deep_dive_demos/open_images_detection/preprocessing/process_images.py#L49
After "process_images.py" has finished, "datapoints_output_path"'s output file was empty.
In the first place, I might probably mistake my paramater.
Could you teach us about which file we give these codes?
By the way, I fed below into the codes.
translate_class_descriptions.py
trainable_classes_path=/tmp/data/classes/classes-trainable.txt
class_description_path=/tmp/data/classes/class-descriptions.csv
trainable_translated_path=/tmp/output/trainable_translated.csv
process_metadata.py
annotations_input_path=/tmp/data/bbox_annotations/train/annotations-human-bbox.csv
image_index_input_path=/tmp/data/images/train/images.csv
point_output_path=/tmp/output/point_output.csv
image_index_output_path=/tmp/output/image_index_output.csv
trainable_classes_path=/tmp/data/classes/classes-trainable.txt
download_images.py
images_path /tmp/output/image_index_output.csv
images_output_directory= /tmp/download_images
process_images.py
image_directory=/tmp/download_images
image_saving_directory=/tmp/save_images
datapoints_input_path=/tmp/output/point_output.csv (I set "process_metadata.py"'s output into this path.)
datapoints_output_path=/tmp/output/point_output_process.csv
I'm looking foword your advice 🙇♀️
Thank you.