python
qq_33666011
这个作者很懒,什么都没留下…
展开
-
python引入不同文件夹下的自定义模块
每次重新用都忘。悲伤。找了无数次。写下来好了。我们要用pwcong模块。我们创建一个 module_pwcong.pth 文件,里面内容就是 pwcong模块所在的目录:C:\Users\Pwcong\Desktop\python1将该 module_pwcong.pth 文件放到这里: python安装目录\Python35\Lib\site-packages例如我的: ...转载 2018-07-23 21:21:57 · 784 阅读 · 0 评论 -
BrokenPipeError: [Errno 32] Broken pipe
运行Pytorch tutorial代码报错:BrokenPipeError: [Errno 32] Broken pipe源代码地址: Training a classifier (CIFAR10)该问题的产生是由于windows下多线程的问题,和DataLoader类有关,具体细节点这里Fix memory leak when using multiple workers on Win...转载 2018-08-20 16:20:18 · 119739 阅读 · 63 评论 -
找到在x中y的每一个元素的索引。
转于:http://www.it1352.com/239800.htmlI have two 1D arrays, x & y, one smaller than the other. I'm trying to find the index of every element of y in x.I've found two naive ways to do this, the f...转载 2018-12-05 21:15:59 · 191 阅读 · 0 评论 -
2019.6学习总结
1、目标检测1.1、np.partition在目标检测中,可能想让一张图片最多检测出有kth个框,可以使用thresh = np.partition(scores, kth)[kth]来得到score里最大的前kth个。使用kth比sort更快。因为他只是确保kth前都是比第kth个大,kth后都比他小。两边不排序。1.2、浅拷贝与深拷贝在pytorch里,经过nn.Moduel得...原创 2019-07-01 16:00:25 · 159 阅读 · 0 评论 -
python中的networkx库
转载自:https://www.cnblogs.com/minglex/p/9205160.html在看graph RNN源代码发现他用了这个库。1.1、Graph1.1.1、Graph的定义Graph是用点和线来刻画离散事物集合中的每对事物间以某种方式相联系的数学模型。网络作为图的一个重要领域,包含的概念与定义更多,如有向图网络(Directed Graphs and Ne...转载 2019-07-24 16:54:56 · 1261 阅读 · 0 评论