python中的module和package分别以文件和文件夹形式组织的。 module定义 module的基本形式为: # Fibonacci numbers module def fib(n): # write Fibonacci series up to n a, b = 0, 1 while a < n: print(a, end=...
python中str和repr
python3中格式化输出经常用到的方法,一种是str(),一种是repr()。 1.f’‘作为格式化输出 在字符串前添加f,变量使用{变量名}格式输出。:表示字符串的宽度。 a='abcdefg' print(f'{a}') print(f'{a:10}1') 另外在python2中常使用的format在python3中依然有效: #format print('{},{}'.f...
darknet:cannot compile with gpu=1
问题描述 在编译dartnet的时候设置GPU=1的时候编译出现错误: compilation terminated due to -Wfatal-errors. Makefile:91: recipe for target 'obj/crop_layer_kernels.o' failed make: *** [obj/crop_layer_kernels.o] Error 1 /usr/...
Microsoft COCO-Common Objects in Context(中文版)
Microsoft COCO-Common Objects in Context 翻译:Ruben 邮箱:lingyunzi09@gmail.com 摘要 本文展示了一个全新的数据集,目标是通过把物体识别放置在更广泛的场景理解问题之下,进而促进物体识别的发展。该数据集通过收集自然背景下复杂的日常生活场景图片而构建完成的。图片中的物体实例都进行了单独分割标注,这样做有助于提高物体定...
RuntimeError: Expected object of type torch.DoubleTensor but found type torch.FloatTensor for argument #2 'weight'解决办法
RuntimeError: Expected object of type torch.DoubleTensor but found type torch.FloatTensor for argument #2 'weight' 今天遇到这个问题,一开始以为是输入的Tensor的问题,后来一检查发现是Model中的weight的数据类型跟输入不同的关系。 输入的是DoubleTensor...
opencv中如何合并多张图片到一张图片中
今天遇到一个问题,需要将多张图片放到一张中,并且还需要添加padding。如下图所示: 首先介绍思路: 将待合成的图片尺寸resize到一致 根据待合成图片的长宽确定合并的起始结束点 输出图片 path='./img/' imgs1=['picasso.jpg','picasso.jpg','picasso.jpg','picasso.jpg','picasso.jp...
谷歌在文本语义相似中的进展
本文翻译得是Advances in Semantic Textual Similarity。 基于神经网络的自然语言理解研究最近发展迅速,尤其在文本语义表示方面,使得一些新颖的产品比如Smart Compose和Talk to Books变得可能。这类产品能够提高多项自然语言任务的性能,比如建立强悍的文本分类器,即使在少至100个标记文本也能表现良好。 下面将介绍两篇谷歌在语义表示研究中...
python中UnicodeDecodeError:'gb2312'codec can't decode bytes:illegal multibyte sequence解决办法
当使用bytes.decode("gb2312")是出现题述问题。 出现这个问题的原因是处理的字符中夹杂特殊字符是gb2312字符集中没有的,因而只需要使用更大一点的字符集GB18030去解析即可。 另外GB2312,gbk,gb18030字符集大小顺序为:GB2312 < GBK < GB18030
python中string转换为datetime
python中将string转换为datetime类型比较简单。只要注意待转换字符串格式要跟正则表达式一致。另外还需要注意年月日的代表字母,比如年是%Y from datetime import datetime datetime_object = datetime.strptime('2018-04-26 11:30:00', '%Y-%m-%d %H:%M:%S') print(type...
Ubuntu16.04下如何安装显卡驱动、cuda、cudnn
本文介绍如何在ubuntu16.04上安装nvidia显卡驱动以及cuda和cudnn。 其中nividia显卡的版本为最新版本 cuda为9.1版本 cudnn为7.1版本 介绍具体的过程。 1.安装显卡驱动 添加软件源: sudo add-apt-repository ppa:graphics-drivers/ppa sudo apt update sudo apt install...