在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:jmpap/YOLOV2-Tensorflow-2.0开源软件地址:https://github.com/jmpap/YOLOV2-Tensorflow-2.0开源编程语言:Jupyter Notebook 100.0%开源软件介绍:YOLO V2 with TensorFlow 2.0Here is a jupyter notebook featuring a complete implementation from scratch of YOLOV2 with TensorFlow 2.0 :
I use this notebook to train a model to detect crop and weeds in a field. The goal is to detect crop in real time for tractor guidance and to detect weeds to remove them. Original paper : YOLO9000: Better, Faster, Stronger by Joseph Redmond and Ali Farhadi. Files
Requirements
Before using the notebook
Using the notebook
LABELS = ('sugarbeet', 'weed')
IMAGE_H, IMAGE_W = 512, 512
GRID_H, GRID_W = 16, 16 # GRID size = IMAGE size / 32
TRAIN_BATCH_SIZE = 10
VAL_BATCH_SIZE = 10
# Train and validation directories
train_image_folder = 'data/train/image/'
train_annot_folder = 'data/train/annotation/'
val_image_folder = 'data/val/image/'
val_annot_folder = 'data/val/annotation/' That's it, just run notebook cells to train YOLO on your own data! Example of useYOLO model trained on sugarbeet and weed dataset (two labels) : CreditsMany thanks to these great repositories: https://github.com/experiencor/keras-yolo2 https://github.com/allanzelener/YAD2K and to this very good explanation of the YOLO V2 loss function: https://fairyonice.github.io/Part_4_Object_Detection_with_Yolo_using_VOC_2012_data_loss.html |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论