上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 54 下一页

2022年4月21日

摘要: http://www.jb51.net/os/Ubuntu/339227.html 阅读全文
posted @ 2022-04-21 17:59 鹅要长大 阅读(56) 评论(0) 推荐(0)
摘要: 前言 opencv-python教程学习系列记录学习python-opencv过程的点滴,本文主要介绍形态学操作,坚持学习,共同进步。 系列教程参照OpenCV-Python中文教程; 系统环境 系统:win7_x64; python版本:python3.5.2; opencv版本:opencv3. 阅读全文
posted @ 2022-04-21 17:59 鹅要长大 阅读(66) 评论(0) 推荐(0)
摘要: 原因 项目没有设置为启动项目; 阅读全文
posted @ 2022-04-21 17:59 鹅要长大 阅读(51) 评论(0) 推荐(0)
摘要: ICCV 2019 参考 1. paper; 2. code; 完 阅读全文
posted @ 2022-04-21 17:58 鹅要长大 阅读(35) 评论(0) 推荐(0)
摘要: 原因为未安装ca-certificates 可以先编辑 /etc/apt/sources.list 文件临时使用http源; 参考 1。 Linux 报错Certificate verification failed: The certificate is NOT trusted. 完 阅读全文
posted @ 2022-04-21 17:56 鹅要长大 阅读(3473) 评论(0) 推荐(0)
摘要: 参考 1. google.ai.blog_EfficientNet: Improving Accuracy and Efficiency through AutoML and Model Scaling; 2. EfficientNet: Rethinking Model Scaling for C 阅读全文
posted @ 2022-04-21 17:56 鹅要长大 阅读(71) 评论(0) 推荐(0)
摘要: 参考 1. 【语义分割】--SegNet理解; 2. SegNet: A Deep Convolutional Encoder-Decoder Architecture for Image Segmentation; 3. 2017-BMVC-bayesian-SegNet; 4. SegNet论文 阅读全文
posted @ 2022-04-21 13:14 鹅要长大 阅读(54) 评论(0) 推荐(0)
摘要: 很多网络上采样的时候使用的是插值方法,比如最近邻/双线性等,但是在模型部署的时候,部署框架不一定支持插值方法,需要使用替代方法,比如SNPE中ONNX转dlc的时候不支持插值操作。 转置卷积的棋盘效应 参考 1。反卷积和上采样+卷积的区别? 2。deconv-checkerboard; 完 阅读全文
posted @ 2022-04-21 13:14 鹅要长大 阅读(440) 评论(0) 推荐(0)
摘要: 参考 1. torch.bmm; 2. torch.matmul; 完 阅读全文
posted @ 2022-04-21 13:14 鹅要长大 阅读(54) 评论(0) 推荐(0)
摘要: skimage.transform.resize(order, preserve_range) order: 插值的方法0-5:0-最近邻;1-双线性; https://blog.csdn.net/qq_34798326/article/details/84976243 skimage在读使用io. 阅读全文
posted @ 2022-04-21 13:08 鹅要长大 阅读(2952) 评论(0) 推荐(0)
摘要: 参考 1. 憨批的语义分割3——unet模型详解以及训练自己的unet模型(划分斑马线); 完 阅读全文
posted @ 2022-04-21 13:08 鹅要长大 阅读(195) 评论(0) 推荐(0)
摘要: convolution操作 Convolution For GPU runtime, when the number of groups is greater than 1, the number of output channels must be a multiple of 4 * the nu 阅读全文
posted @ 2022-04-21 13:08 鹅要长大 阅读(82) 评论(0) 推荐(0)

2022年4月6日

摘要: 入门 基础 模板 参考 1. B站视频_LaTeX入门_耿楠; 2. B站视频_nwafuthesis; 3. TeXLive; 4. OverLeaf; 5. CTAN; 完 阅读全文
posted @ 2022-04-06 21:55 鹅要长大 阅读(120) 评论(0) 推荐(0)

2022年3月24日

摘要: 参考 1. paper; 2. code; 完 阅读全文
posted @ 2022-03-24 22:36 鹅要长大 阅读(43) 评论(0) 推荐(0)
摘要: code binary_mask = (im_array[:,:,0] == 255) & (im_array[:,:,1] == 255) & (im_array[:,:,2] == 0) 参考 1. convert-rgb-image-to-index-image; 完 阅读全文
posted @ 2022-03-24 22:35 鹅要长大 阅读(37) 评论(0) 推荐(0)
摘要: 参考 1. pytorch中的上采样(上采样,转置卷积,上池化,PixelShuffle); 完 阅读全文
posted @ 2022-03-24 22:32 鹅要长大 阅读(341) 评论(0) 推荐(0)
摘要: 如何创建 如何使用数据集 如何查看GPU使用情况 如何释放GPU内存 如何安装第三方库 !/opt/bin/nvidia-smi import torch torch.__version__ !ps aux | grep python !kill -9 process_id 参考 1. 【colab 阅读全文
posted @ 2022-03-24 22:32 鹅要长大 阅读(143) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-03-24 22:32 鹅要长大 阅读(0) 评论(0) 推荐(0)
摘要: mAP@0.5: 将IoU设为0.5时,计算每一类的所有图片的AP,然后所有类别求平均,即mAP; mAP@.5:.95(mAP@[.5:.95]) 表示在不同IoU阈值(从0.5到0.95,步长0.05)(0.5、0.55、0.6、0.65、0.7、0.75、0.8、0.85、0.9、0.95)上 阅读全文
posted @ 2022-03-24 22:31 鹅要长大 阅读(476) 评论(0) 推荐(0)
摘要: cmd sudo fuser -v /dev/nvidia* # 查找占用GPU资源的PID kill -9 pid 参考 1. ubuntu 释放GPU内存; 完 阅读全文
posted @ 2022-03-24 22:31 鹅要长大 阅读(956) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 54 下一页

导航