当前位置:网站首页>学习经验分享之七:YOLOv5代码中文注释
学习经验分享之七:YOLOv5代码中文注释
2022-08-02 11:27:00 【人工智能算法研究院】
近期学习YOLOv5的朋友比较多,为便于大家更好理解源码,对YOLOv5进行中文注释。需要的朋友可以关注我的微信公众号:人工智能AI算法工程师 私信后获取。
以下为部分代码示例。
def main(opt):
# 1、logging和wandb初始化
# 日志初始化
set_logging(RANK)
if RANK in [-1, 0]:
# 可以输出所有训练opt参数
print(colorstr('train: ') + ', '.join(f'{k}={v}' for k, v in vars(opt).items()))
# 这句代码用来检查代码版本是否是最新的
check_git_status()
# 用来检查requirements.txt所需包是否都满足
check_requirements(exclude=['thop'])
# wandb logging初始化
wandb_run = check_wandb_resume(opt)
# 2、判断是否使用断点续训resume, 加载参数
if opt.resume and not wandb_run:
# 使用断点续训 就从last.pt中读取相关参数
# 如果resume是str,则将表示传入的是模型的路径地址
# 如果resume是True,则通过get_lastest_run()函数找到runs为文件夹中最近的权重文件last.pt
ckpt = opt.resume if isinstance(opt.resume, str) else get_latest_run()
assert os.path.isfile(ckpt), 'ERROR: --resume checkpoint does not exist' # check
# 相关的opt参数也要替换成last.pt中的opt参数
with open(Path(ckpt).parent.parent / 'opt.yaml') as f:
opt = argparse.Namespace(**yaml.safe_load(f)) # replace
opt.cfg, opt.weights, opt.resume = '', ckpt, True # reinstate
logger.info('Resuming training from %s' % ckpt) # print
else:
# 不使用断点续训 就可以文件中读取相关参数
# opt.hyp = opt.hyp or ('hyp.finetune.yaml' if opt.weights else 'hyp.scratch.yaml')
opt.data, opt.cfg, opt.hyp = check_file(opt.data), check_file(opt.cfg), check_file(opt.hyp) # check files
如果觉得对大家有帮助,欢迎点赞收藏关注,我会继续给大家做实验提供参考。有问题也欢迎私信我。
需要更多程序资料以及答疑欢迎大家关注——微信公众号:人工智能AI算法工程师
边栏推荐
猜你喜欢
【kali-信息收集】(1.9)Metasploit+搜索引擎工具Shodan
MySql模糊查询大全
使用kubesphere图形界面创建一个应用操作流程
CCF paper conference IEEE how to query all articles of a conference journal
npm run dev 和 npm run serve区别
Create an application operation process using the kubesphere GUI
STM32+MPU6050 Design Portable Mini Desktop Clock (Automatically Adjust Time Display Direction)
Deep Learning 100 Examples - Convolutional Neural Network (CNN) for mnist handwritten digit recognition
大疆P4M云遮挡矫正
FinClip | 来了, 2022 年 7 月更新大盘点
随机推荐
Mysql事务隔离级别与MVCC(多版本并发控制)
Mysql环境变量的配置(详细图解)
多线程(基础) - 4万字总结
MySql模糊查询大全
Excel dynamic chart production
365天挑战LeetCode1000题——Day 047 设计循环队列 循环队列
受邀出席Rust开发者大会|Rust如何助力量化高频交易?
Problem solving in the process of using mosquitto
情景剧《重走长征路》上演
外包学生管理系统架构文档
Running yum reports Error: Cannot retrieve metalink for reposit
【kali-信息收集】(1.9)Metasploit+搜索引擎工具Shodan
OSI 七层模型和TCP/IP模型及对应协议(详解)
C#为listview选中的项添加右键菜单
图形处理单元(GPU)的演进
Question about #oracle#, how to solve it?
Camera Hal OEM模块 ---- cmr_snapshot.c
find查找多类型结尾文件
Nanny Level Tutorial: Write Your Own Mobile Apps and Mini Programs (Part 2)
CCF论文会议 IEEE 如何查询某个会议期刊的所有文章