资源简介
tensorflow2.0 yolo3目标检测算法
代码片段和文件信息
# training
EPOCHS = 1000
BATCH_SIZE = 8
load_weights_before_training = False
load_weights_from_epoch = 10
# input image
IMAGE_HEIGHT = 416
IMAGE_WIDTH = 416
CHANNELS = 3
# Dataset
CATEGORY_NUM = 80
ANCHOR_NUM_EACH_SCALE = 3
COCO_ANCHORS = [[116 90] [156 198] [373 326] [30 61] [62 45] [59 119] [10 13] [16 30] [33 23]]
COCO_ANCHOR_INDEX = [[0 1 2] [3 4 5] [6 7 8]]
SCALE_SIZE = [13 26 52]
use_dataset = “pascal_voc“ # “custom“ “pascal_voc“ “coco“
PASCAL_VOC_DIR = “./dataset/VOCdevkit/VOC2012/“
PASCAL_VOC_ANNOTATION = PASCAL_VOC_DIR + “Annotations“
PASCAL_VOC_IMAGE = PASCAL_VOC_DIR + “JPEGImages“
# The 20 object classes of PASCAL VOC
PASCAL_VOC_CLASSES = {“person“: 1 “bird“: 2 “cat“: 3 “cow“: 4 “dog“: 5
“horse“: 6 “sheep“: 7 “aeroplane“: 8 “bicycle“: 9
“boat“: 10 “bus“: 11 “car“: 12 “motorbike“: 13
“train“: 14 “bottle“: 15 “chair“: 16 “diningtable“: 17
“pottedplant“: 18 “sofa“: 19 “tvmonitor“: 20}
COCO_DIR = “./dataset/COCO/2017/“
COCO_CLASSES = {“person“: 1 “bicycle“: 2 “car“: 3 “motorcycle“: 4 “airplane“: 5
“bus“: 6 “train“: 7 “truck“: 8 “boat“: 9 “traffic light“: 10
“fire hydrant“: 11 “stop sign“: 12 “parking meter“: 13 “bench“: 14
“bird“: 15 “cat“: 16 “dog“: 17 “horse“: 18 “sheep“: 19 “cow“: 20
“elephant“: 21 “bear“: 22 “zebra“: 23 “giraffe“: 24 “backpack“: 25
“umbrella“: 26 “handbag“: 27 “tie“: 28 “suitcase“: 29 “frisbee“: 30
“skis“: 31 “snowboard“: 32 “sports ball“: 33 “kite“: 34 “baseball bat“: 35
“baseball glove“: 36 “skateboard“: 37 “surfboard“: 38 “tennis racket“: 39
“bottle“: 40 “wine glass“: 41 “cup“: 42 “fork“: 43 “knife“: 44 “spoon“: 45
“bowl“: 46 “banana“: 47 “apple“: 48 “sandwich“: 49 “orange“: 50 “broccoli“: 51
“carrot“: 52 “hot dog“: 53 “pizza“: 54 “donut“: 55 “cake“: 56 “chair“: 57
“couch“: 58 “potted plant“: 59 “bed“: 60 “dining table“: 61 “toilet“: 62
“tv“: 63 “laptop“: 64 “mouse“: 65 “remote“: 66 “keyboard“: 67 “cell phone“: 68
“microwave“: 69 “oven“: 70 “toaster“: 71 “sink“: 72 “refrigerator“: 73
“book“: 74 “clock“: 75 “vase“: 76 “scissors“: 77 “teddy bear“: 78
“hair drier“: 79 “toothbrush“: 80}
TXT_DIR = “./data_process/data.txt“
custom_dataset_dir = ““
custom_dataset_classes = {}
# loss
IGNORE_THRESHOLD = 0.5
# NMS
CONFIDENCE_THRESHOLD = 0.6
IOU_THRESHOLD = 0.5
MAX_BOX_NUM = 50
MAX_TRUE_BOX_NUM_PER_IMG = 20
# save model
save_model_dir = “saved_model/“
save_frequency = 5
# tensorflow lite model
TFLite_model_dir = “yolov3_model.tflite“
test_images_during_training = True
training_results_save_dir = “./test_results_during_training/“
test_images = [““ ““]
test
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\
文件 218 2020-06-08 07:49 YOLOv3_TensorFlow2-master\.gitignore
文件 1069 2020-06-08 07:49 YOLOv3_TensorFlow2-master\LICENSE
文件 4170 2020-06-08 07:49 YOLOv3_TensorFlow2-master\README.md
目录 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\assets\
文件 169352 2020-06-08 07:49 YOLOv3_TensorFlow2-master\assets\1.png
文件 85811 2020-06-08 07:49 YOLOv3_TensorFlow2-master\assets\2.png
文件 3120 2020-06-08 07:49 YOLOv3_TensorFlow2-master\configuration.py
文件 787 2020-06-08 07:49 YOLOv3_TensorFlow2-master\convert_to_tflite.py
目录 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\data_process\
文件 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\data_process\__init__.py
文件 1014 2020-06-08 07:49 YOLOv3_TensorFlow2-master\data_process\make_dataset.py
文件 5302 2020-06-08 07:49 YOLOv3_TensorFlow2-master\data_process\parse_coco.py
文件 3300 2020-06-08 07:49 YOLOv3_TensorFlow2-master\data_process\parse_voc.py
文件 1275 2020-06-08 07:49 YOLOv3_TensorFlow2-master\data_process\read_txt.py
目录 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\dataset\
文件 7 2020-06-08 07:49 YOLOv3_TensorFlow2-master\dataset\README.md
文件 1198 2020-06-08 07:49 YOLOv3_TensorFlow2-master\detect_ob
文件 698 2020-06-08 07:49 YOLOv3_TensorFlow2-master\parse_cfg.py
目录 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\saved_model\
文件 29 2020-06-08 07:49 YOLOv3_TensorFlow2-master\saved_model\README.md
目录 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\test_data\
文件 24 2020-06-08 07:49 YOLOv3_TensorFlow2-master\test_data\README.md
文件 2307 2020-06-08 07:49 YOLOv3_TensorFlow2-master\test_on_single_image.py
目录 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\test_results_during_training\
文件 73 2020-06-08 07:49 YOLOv3_TensorFlow2-master\test_results_during_training\README.md
文件 3392 2020-06-08 07:49 YOLOv3_TensorFlow2-master\train_from_scratch.py
目录 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\utils\
文件 0 2020-06-08 07:49 YOLOv3_TensorFlow2-master\utils\__init__.py
文件 2248 2020-06-08 07:49 YOLOv3_TensorFlow2-master\utils\iou.py
文件 1526 2020-06-08 07:49 YOLOv3_TensorFlow2-master\utils\nms.py
............此处省略13个文件信息
- 上一篇:打砖块
- 下一篇:pycaret数据挖掘实践
相关资源
- tensorflow制作自己的灰度图像数据集并
- anaconda下安装tensorflow(注:不同版本
- 北京大学曹健老师-人工智能实践:
- Deep Learning With Python - Jason Brownlee
- Python-自然场景文本检测PSENet的一个
- Python-高效准确的EAST文本检测器的一个
- Python-TensorFlow弱监督图像分割
- Python-基于tensorflow实现的用textcnn方法
- Python-subpixel利用Tensorflow的一个子像素
- 【官方文档】TensorFlow Python API docume
-
tensorflow画风迁移代码 st
yle transfer - 10行Python代码实现目标检测
- 简单粗暴 TensorFlow
- 5. 深度学习中的目标检测 python代码实
- [PDF] Reinforcement Learning With Open AI Tens
- tensorflow目标检测代码
- 基于Python的手写字体识别系统
- 基于Tensorflow的人脸识别源码
- python TensorFlow 官方文档中文版
- Python-在TensorFlow中实现实现图像卷积网
- tensorflow-1.9.0-cp37-cp37m-win_amd64.whl
- Faster-RCNN-TensorFlow-Python3.5-master
- 聊天机器人tensorflow
- caffe模型转化为tensorflow模型
- Python-一个非常简单的BiLSTMCRF模型用于
- Python-Tensorflow仿AlphaGo框架实现的AI围棋
- yolo目标检测、识别、跟踪
- Mask R-CNN源码(TensorFlow版本)
- 基于python3 tensorflow DBN_and_RNN的实现
- tensorflow-0.8.0-cp34-cp34m-linux_x86_64.whl
评论
共有 条评论