#我的codes,在colab上,不是本机cpu:
import os, sys
#下载数据集,underwater trash detection
!wget https://www.dropbox.com/s/lbji5ho8b1m3op1/reduced_label_yolov6.zip?dl=1
!unzip -q reduced_label_yolov6.zip?dl=1
!rm reduced_label_yolov6.zip?dl=1
if not os.path.exists('YOLOv6'):
!git clone https://github.com/meituan/YOLOv6.git
,,
,
#下载nano 最小的pt文件
!wget https://github.com/meituan/YOLOv6/releases/download/0.2.0/yolov6n.pt
..