上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页
摘要: pytorch使用horovod多gpu训练 pytorch在Horovod上训练步骤分为以下几步: import torch import horovod.torch as hvd # Initialize Horovod 初始化horovod hvd.init() # Pin GPU to be 阅读全文
posted @ 2020-02-12 12:15 you-wh 阅读(4801) 评论(2) 推荐(0) 编辑
摘要: 博客园美化,鼠标点击特效,更换背景 下面是普通特效,鼠标特效,修改背景,加动态效果等 鼠标特效 在设置里把下面代码复制到页脚html里即可实现,鼠标点击出现彩色汉字特效 <script type="text/javascript"> /* 鼠标特效 */ var a_idx = 0; jQuery( 阅读全文
posted @ 2020-02-10 18:34 you-wh 阅读(4644) 评论(5) 推荐(14) 编辑
摘要: RetinaFace: Single-stageDenseFaceLocalisationintheWild retinaface是一个鲁棒性较强的单阶段人脸检测器,比较突出的工作是加入了 extra-supervised 和 self-supervised ; 大部分人脸检测重点关注人脸分类和人脸 阅读全文
posted @ 2020-02-08 22:18 you-wh 阅读(6926) 评论(2) 推荐(1) 编辑
摘要: resnet 由于f(x)+x是逐通道相加,所以要判断通道数是否相同,存在两种bottleneck,通道数不同时,需要对x进行downsample,使用1*1的卷积改变。 densenet 每个bottleneck输出的特征通道数是相同的,一般为32,这个值也称为growthrate. densen 阅读全文
posted @ 2020-02-06 22:24 you-wh 阅读(1435) 评论(0) 推荐(0) 编辑
摘要: LPRnet轻量级实时车牌识别 简述LPRnet特点 LPRNet由轻量级的卷积神经网络组成,所以它可以采用端到端的方法来进行训练。据我们所知,LPRNet是第一个没有采用RNNs的实时车牌识别系统。因此,LPRNet算法可以为LPR创建嵌入式部署的解决方案,即便是在具有较高挑战性的中文车牌识别上。 阅读全文
posted @ 2020-02-06 13:07 you-wh 阅读(9672) 评论(2) 推荐(1) 编辑
摘要: str = ('123456') fh = open('666.txt', 'w', encoding='utf-8') fh.write(str) fh.close() 阅读全文
posted @ 2020-02-04 22:45 you-wh 阅读(22200) 评论(1) 推荐(5) 编辑
摘要: for file in os.listdir('yolov3_tiny_car_det/output'): fsize = os.path.getsize(f'yolov3_tiny_car_det/output/{file}') if (fsize<40000): os.remove(f'yolo 阅读全文
posted @ 2020-02-03 18:21 you-wh 阅读(986) 评论(0) 推荐(0) 编辑
摘要: 如果想创建一个实时改变的事件,最好额外使用一个线程独自处理此事件。 th = threading.Thread(target=self.Display) th.start() 创建线程时传入函数一定要注意,函数名传入不要带括号,跟pyqt的事件绑定一样不能带括号。 阅读全文
posted @ 2020-02-01 18:13 you-wh 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 首先在自己的github上创建仓库;安装git 在所创建仓库的文件夹下打开 git bash,右键会显示git菜单 1. git init //初始化仓库 2. git add .(文件name) //添加文件到本地仓库 3. git commit -m "first commit" //添加文件描 阅读全文
posted @ 2020-02-01 15:08 you-wh 阅读(252) 评论(0) 推荐(0) 编辑
摘要: import os for files in os.listdir('output'): if files.endswith(".py"): os.remove(os.path.join('output',files)) 下面是删除所有以及子目录 import os,shutil def del_f 阅读全文
posted @ 2020-01-31 19:43 you-wh 阅读(3093) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 18 下一页
Fork me on GitHub