赞
踩
部署环境:colab
目标检测训练模型: yolov5
标注数据集工具:roboflow
train: ../train/images
val: ../valid/images
nc: 1
names: ['Ameng']
!git clone https://github.com/ultralytics/yolov5 # clone rep
%cd yolov5
%pip install -qr requirements.txt
import torch
from IPython.display import Image, clear_output # to display images
clear_output()
print('Setup complete. Using torch %s %s' % (torch.__version__, torch.cuda.get_device_properties(0) if torch.cuda.is_available() else 'CPU'))
!unzip data.zip
!python train.py --img 640 --batch 50 --epochs 100 --data ../data/data.yaml --weights yolov5s.pt --nosave --cache
!python detect.py --weights /content/yolov5/runs/train/exp/weights/last.pt --img 640 --conf 0.25 --source 001.PNG
至此,完成目标识别的一个小demo,想提高精度,可以尝试增加数据集的数量。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。