上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: 1 #include <iostream> 2 #include <algorithm> 3 using namespace std; 4 5 class Solution{ 6 public: 7 void quick_sort(vector<int>& arr, int l, int r) 8 阅读全文
posted @ 2019-03-28 16:40 unicoe 阅读(859) 评论(0) 推荐(0) 编辑
摘要: Traceback (most recent call last): File "/home/user/Disk1.8T/unicoe/pytorch-ssd-2/experments/3_242_seg_merge_base512/train_vgg640_480_seg_merge_seg.py 阅读全文
posted @ 2019-03-26 17:45 unicoe 阅读(309) 评论(0) 推荐(0) 编辑
摘要: https://discuss.pytorch.org/t/how-the-pytorch-freeze-network-in-some-layers-only-the-rest-of-the-training/7088 https://blog.csdn.net/jdzwanghao/articl 阅读全文
posted @ 2019-03-22 11:46 unicoe 阅读(3597) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/sasuke-/p/5396843.html https://blog.csdn.net/someone_and_anyone/article/details/81044153 https://blog.csdn.net/someone_and_ 阅读全文
posted @ 2019-03-13 19:33 unicoe 阅读(568) 评论(0) 推荐(0) 编辑
摘要: (1)创建虚拟环境 https://blog.csdn.net/lyy14011305/article/details/59500819 (2)安装pytorch=0.3.1 conda install pytorch=0.3.1 torchvision cuda80 (3)安装cv2 pip in 阅读全文
posted @ 2019-03-13 10:56 unicoe 阅读(3496) 评论(0) 推荐(0) 编辑
摘要: conda install --offline pytorch-1.0.0-py3.6_cuda9.0.176_cudnn7.4.1_1.tar.bz2 阅读全文
posted @ 2019-02-28 19:32 unicoe 阅读(5056) 评论(0) 推荐(1) 编辑
摘要: update-alternatives --config x-terminal-emulator 阅读全文
posted @ 2019-01-16 10:56 unicoe 阅读(414) 评论(0) 推荐(0) 编辑
摘要: sys/os/glnxa64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found matlab 调用c++编译好的文件出现问题 https://blog.csdn.net/arackethis/article/details/46287301 阅读全文
posted @ 2018-11-16 21:52 unicoe 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 查看显卡信息 查看caffe源码中使用寄存器的数量,在Makefile.config中添加 Check failed: error == cudaSuccess (7 vs. 0) too many resources requested for launch https://devtalk.nvi 阅读全文
posted @ 2018-10-29 21:50 unicoe 阅读(1638) 评论(2) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-09-26 11:13 unicoe 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 尝试用PyTorch搭积木 重写FCN 重写SSD 重写faster rcnn 使用语义分割网络 使用更多数据集 阅读全文
posted @ 2018-09-15 16:55 unicoe 阅读(183) 评论(0) 推荐(0) 编辑
摘要: class ResNet(nn.Module): def __init__(self, block, layers, num_classes=1000): self.inplanes = 64 super(ResNet, self).__init__() self.conv1 = nn.Conv2d(3, 64, kernel_size=7, stride=2, pa... 阅读全文
posted @ 2018-09-14 20:05 unicoe 阅读(1077) 评论(2) 推荐(0) 编辑
摘要: https://blog.csdn.net/pfm685757/article/details/50464426 1、函数声明的参数列表中加单星号,即f(*x)则表示x为元组,所有对x的操作都应将x视为元组类型进行。所有传入f(*x)的变量都将作为元组x的元素之一。 2、双星号同上,区别是x视为字典 阅读全文
posted @ 2018-09-12 11:55 unicoe 阅读(4875) 评论(0) 推荐(0) 编辑
摘要: Win10 + Visual Studio 2017 下 OpenCV无法显示图像的问题 阅读全文
posted @ 2018-09-06 17:03 unicoe 阅读(303) 评论(0) 推荐(0) 编辑
摘要: friend ostream& operator(ostream &out, Complex &c);template ostream& operator &c){ out << c.a << " " << c.b << endl; return out;} 阅读全文
posted @ 2018-09-04 17:31 unicoe 阅读(182) 评论(0) 推荐(0) 编辑
摘要: caltech行人检测数据集上的论文 地址 :http://www.vision.caltech.edu/Image_Datasets/CaltechPedestrians/files/algorithms.pdf [1] A. Angelova, A. Krizhevsky, V. Vanhouc 阅读全文
posted @ 2018-08-14 11:10 unicoe 阅读(2126) 评论(0) 推荐(0) 编辑
摘要: 使用K-S检验一个数列是否服从正态分布、两个数列是否服从相同的分布 假设检验的基本思想: 若对总体的某个假设是真实的,那么不利于或者不能支持这一假设的事件A在一次试验中是几乎不可能发生的。如果事件A真的发生了,则有理由怀疑这一假设的真实性,从而拒绝该假设。 实质分析: 假设检验实质上是对原假设是否正 阅读全文
posted @ 2018-07-18 11:38 unicoe 阅读(433) 评论(0) 推荐(0) 编辑
摘要: matplotlib较好的博客 http://www.cnblogs.com/yinheyi/p/6056314.html 阅读全文
posted @ 2018-07-13 11:37 unicoe 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/a542551042/article/details/48497539 Python 获取时间通过 time 模块 如下代码,是通过获取当前的时间,按照格式输出 Python默认获取当前的时间返回的都是时间的元组,下面是元组的,字符串时间的一个转换输 阅读全文
posted @ 2018-07-12 20:22 unicoe 阅读(18407) 评论(2) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页