会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
yx啦啦啦
Do what you love, and fuck the rest !
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
下一页
2021年1月8日
YOLOV5——使用 k-means 聚类 anchorbox 数据
摘要: 使用 k-means 聚类 anchorbox 数据
阅读全文
posted @ 2021-01-08 19:57 yx啦啦啦
阅读(5276)
评论(1)
推荐(0)
编辑
YOLOV5——将 json 格式的标注数据转化为 YOLO 需要的 txt 格式
摘要: 将 json 标注文件转化为 YOLO 所需要的 txt 数据格式
阅读全文
posted @ 2021-01-08 14:19 yx啦啦啦
阅读(11871)
评论(0)
推荐(1)
编辑
YOLOV5——输出 json 格式预测文件(修改detect.py)
摘要: yolov5输出 json 格式的预测文件
阅读全文
posted @ 2021-01-08 11:08 yx啦啦啦
阅读(11423)
评论(1)
推荐(0)
编辑
2020年12月25日
Linux——查看 nvidia 显卡运行情况(温度、显存等)
摘要: 每 2 秒监听一次:watch -n 2 nvidia-smi
阅读全文
posted @ 2020-12-25 15:14 yx啦啦啦
阅读(2851)
评论(0)
推荐(0)
编辑
Linux——使用scp传输大文件
摘要: rz 上传文件至 Linux 会限制文件大小不能超过4G 没法子,只能选用 scp 进行文件传输 1、cd 至文件目录 2、scp -P ddd test.zip username@ip_address:/home/username ddd:端口号 username:账号用户名 ip_address
阅读全文
posted @ 2020-12-25 15:09 yx啦啦啦
阅读(3465)
评论(0)
推荐(0)
编辑
2020年12月23日
Linux——记录一些学习中常用的操作命令
摘要: 一 基础命令: 1、创建/删除文件夹:mkdir / rmdir fileName 2、创建文件:touch file.txt 3、查看文件:cat file.txt 4、编辑文件:vi file.txt 5、文件重命名:mv a.txt b.txt 6、查看当前路径:pwd 7、xshell 中上
阅读全文
posted @ 2020-12-23 15:28 yx啦啦啦
阅读(95)
评论(0)
推荐(0)
编辑
2020年12月14日
Python——解决matplotlib之 plt.show()无法显示图片(亲测有效)
摘要: 修改 matplotlibrc 文件 路径:anaconda3\Lib\site-packages\matplotlib\mpl-data\matplotlibrc backend : Agg =》 backend : TkAgg
阅读全文
posted @ 2020-12-14 16:48 yx啦啦啦
阅读(4114)
评论(0)
推荐(0)
编辑
2020年11月30日
Python——labelImg安装
摘要: 环境 anaconda3 + python 3.6 库支持 PyQt5 、pyqt5_tools、lxml (pip install PyQt5 ) 下载源码 labelImg :https://github.com/tzutalin/labelImg 编译源码 1、进入源码的指定文件目录(cd C
阅读全文
posted @ 2020-11-30 21:16 yx啦啦啦
阅读(1379)
评论(0)
推荐(0)
编辑
2020年9月22日
Python——numpy中的 sum 函数
摘要: import numpy as np # 初始化二维数组 a = np.random.randn(4, 3) # 数组普通相加,默认 axis=0 b = np.sum(a) # 按行相加,不保持其二维特性 c = np.sum(a, axis=1) # 按行相加,并且保持其二维特性 d = np.
阅读全文
posted @ 2020-09-22 10:38 yx啦啦啦
阅读(2146)
评论(0)
推荐(0)
编辑
2020年8月17日
Python——pymysql 操作数据库
摘要: # 引入 pymysql import pymysql as mysql def main(): # 连接数据库 db = mysql.connect(host='localhost', user='root', password='', db='test', charset='utf8') # 创
阅读全文
posted @ 2020-08-17 11:43 yx啦啦啦
阅读(123)
评论(0)
推荐(0)
编辑
上一页
1
2
3
下一页
公告
……