赞
踩
参考地址:自动标注软件X-AnyLabeling的使用教程及一些问题的记录-CSDN博客
conda虚拟环境配置
pip install -r requirements.txt
python anylabeling/app.py
|- custom_model
| |- fruits.onnx
| |- yolov5s.yaml
- type: yolov5 #网络类型定义,目前已适配的网络类型定义可参见 model_manager.py 文件中的 load_custom_model() 函数;
- name: yolov5s-r20230520 # 如果是加载用户自定义模型,此字段可忽略
- display_name: Fruits (YOLOv5s) #展示到界面上显示的名称,可根据自定义任务自行命名
- model_path: fruits.onnx # 相对于自定义配置文件 *.yaml 所对应的模型权重路径,要求是 *.onnx 文件格式
- input_width: 640
- input_height: 640
- nms_threshold: 0.45
- confidence_threshold: 0.45
- classes:
- - apple
- - banana
- - orange
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。