From ea8e2a2fc6651f6cf2a592451dff021cb7a2c9f2 Mon Sep 17 00:00:00 2001 From: Tom Allsop Date: Wed, 16 Dec 2020 15:45:55 +0000 Subject: [PATCH] Added sources to YOLO v3 --- models/object_detection/yolo_v3_tiny/tflite_fp32/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/models/object_detection/yolo_v3_tiny/tflite_fp32/README.md b/models/object_detection/yolo_v3_tiny/tflite_fp32/README.md index 9eafa3e..25b4022 100644 --- a/models/object_detection/yolo_v3_tiny/tflite_fp32/README.md +++ b/models/object_detection/yolo_v3_tiny/tflite_fp32/README.md @@ -42,3 +42,7 @@ Dataset: MS COCO Validation | Output Node Name | Shape | Description | |------------------|---------|-------------| | output_boxes | (1, 2535, 85) | A 1xNx85 map of predictions, where the first 4 entries of the 3rd dimension are the bounding box coordinates and the 5th is the confidence. The remaining entries are softmax scores for each class. | + +## Sources +- [DarkNet](https://github.com/pjreddie/darknet/blob/master/LICENSE) +- [YOLO v3 Paper](https://arxiv.org/abs/1804.02767)