├── .gitignore ├── README.md ├── data_parsing ├── LICENSE ├── __init__.py ├── requirements.txt ├── setup.py ├── voc_train.py └── voc_utils.py └── network ├── LICENSE ├── YOLO_small_tf.py ├── test └── person.jpg └── weights └── put_weight_file_here.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /data_parsing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/data_parsing/LICENSE -------------------------------------------------------------------------------- /data_parsing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_parsing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/data_parsing/requirements.txt -------------------------------------------------------------------------------- /data_parsing/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/data_parsing/setup.py -------------------------------------------------------------------------------- /data_parsing/voc_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/data_parsing/voc_train.py -------------------------------------------------------------------------------- /data_parsing/voc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/data_parsing/voc_utils.py -------------------------------------------------------------------------------- /network/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/network/LICENSE -------------------------------------------------------------------------------- /network/YOLO_small_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/network/YOLO_small_tf.py -------------------------------------------------------------------------------- /network/test/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dshahrokhian/YOLO_tensorflow/HEAD/network/test/person.jpg -------------------------------------------------------------------------------- /network/weights/put_weight_file_here.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------