摘要: pytorch版[源码地址](https://github.com/ultralytics/yolov3) 代码解析参考[教程](https://my.oschina.net/u/4281386/blog/4299751) 另一个参考[教程](https://blog.csdn.net/h__ang 阅读全文
posted @ 2021-05-17 23:01 零纪年 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 参考[TMUX的命令使用]{http://www.ruanyifeng.com/blog/2019/10/tmux.html} 1、新建会话```tmux new -s <session-name>```上面命令新建一个指定名称的会话 2、 分离会话在 Tmux 窗口中```Ctrl+b d或tmu 阅读全文
posted @ 2021-05-17 23:00 零纪年 阅读(84) 评论(0) 推荐(0) 编辑
摘要: 参考教程:1、[git上传本地代码到github](https://blog.csdn.net/java_2017_csdn/article/details/90177889) 2、[教程2](https://blog.csdn.net/weixin_39274808/article/details 阅读全文
posted @ 2021-05-17 22:58 零纪年 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 我们常见到python文件的前两行都会写上如下两行代码, 下面分别解释这两条语句的意义,并介绍pycharm中自动生成py文件头部信息的方法。```#!/usr/bin/env python# -*- coding:utf-8 -*-``` ```#!/usr/bin/python# -*- cod 阅读全文
posted @ 2021-05-17 22:56 零纪年 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 参考:1、[GitHub](https://github.com/DataXujing/detr_transformer) 2、[Bilibili视频](https://www.bilibili.com/video/BV1GC4y1h77h) 1、拷贝代码``` git clone https:// 阅读全文
posted @ 2021-05-17 22:54 零纪年 阅读(6572) 评论(0) 推荐(1) 编辑
摘要: mmdetection修改文件步骤: 1、./mmdetection/configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py```将'../_base_/datasets/coco_detection.py' 修改为 '../_base_/dataset 阅读全文
posted @ 2021-05-17 22:51 零纪年 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 本文内容整理自CSDN博客[使用YOLOv3训练BDD100K数据集之标签格式转换](https://blog.csdn.net/qq583083658/article/details/86496563) 一、将BDD100K数据集的json标签格式转换为VOC的xml标签格式 首先,我们需要两个辅 阅读全文
posted @ 2021-05-17 22:48 零纪年 阅读(922) 评论(0) 推荐(0) 编辑