Commit acf01f00 authored by holzinger's avatar holzinger
Browse files

Update README.md

parent 891ed408
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -179,7 +179,10 @@ ALL_LABELS_FILE is a text file that contains all the labels.
* the vector for a single picture can be extracted with the following scripts for the respective models: [vector_from_image_singlelabel.py](/preprocessing/vector_from_image_singlelabel.py) and [vector_from_image_multilabel.py](/preprocessing/vector_from_image_multilabel.py)  
    example use:
    ```
    python vector_from_image_multilabel.py -image ../some_test_images/cat3.jpg -graph ../models/multilabel_default/retrained_graph.pb -label ../cocoapi/labels.txt
    python vector_from_image_multilabel.py \
    --image ../some_test_images/cat3.jpg -graph \
    --graph ../models/multilabel_default/retrained_graph.pb \
    --label ../cocoapi/labels.txt
    ```
* to create an equal distribution without intersecting pictures we used the following [script](preprocessing/coco_preprocessing/100.py):
```