12 2015 档案

摘要:1、用vim打开一个文件,例如:original.trace2、在普通模式下,输入:":sp"(不含引号)横向切分一个窗口,或者":vsp"纵向切分一个窗口,敲入命令后,你将看到两个窗口打开的是同一个文件3、在普通模式下,输入:":e new.trace",在其中一个窗口里打开另一个文件4、切换到含... 阅读全文
posted @ 2015-12-31 10:02 dupuleng 阅读(180) 评论(0) 推荐(0) 编辑
摘要:批量注释:使用下面命令在指定的行首添加注释::起始行号,结束行号s/^/注释符/g如:10,20s/^/#/g取消注释::起始行号,结束行号s/^注释符//g如:10,20s/^#//g如果注释符是//,那么相应的注释命令和取消注释命令分别是:注释: : 10 , 20s#^#//#g取消注释: 1... 阅读全文
posted @ 2015-12-26 18:51 dupuleng 阅读(218) 评论(0) 推荐(0) 编辑
摘要:参考网页:http://deeplearning.net/software/theano/install_ubuntu.html#install-ubuntutheano是python下非常重要的深度学习库,安装过程如下:sudo apt-get install python-numpy pytho... 阅读全文
posted @ 2015-12-08 14:25 dupuleng 阅读(74) 评论(0) 推荐(0) 编辑
摘要:python中的print默认是换行的,但是在实际应用中经常会遇到不想输出换行符的情况,以下是两种解决方案。1、print后加‘,’print 'hello world',2、使用sys.stdout.write('hello world')但是,这种方法在执行时并不会实时显示,每次只有在换行时才会... 阅读全文
posted @ 2015-12-08 10:26 dupuleng 阅读(4329) 评论(0) 推荐(0) 编辑
摘要:如果一个数组无穷大,numpy在输出时会自动省略中间部分而只打印部分,如果想全部呈现数组的内容,可以使用Numpy.set_printoptions(threshold='nan')threshold : Total number of array elements to be print(输出数组... 阅读全文
posted @ 2015-12-08 10:17 dupuleng 阅读(11845) 评论(1) 推荐(0) 编辑
摘要:原文地址:http://www.cnblogs.com/ma6174/archive/2011/12/10/2283393.html 1 """"""""""""""""""""""""""""""""""""""&qu 阅读全文
posted @ 2015-12-04 16:50 dupuleng 阅读(117) 评论(0) 推荐(0) 编辑
摘要:在caffe中使用./python/draw-net.py时遇到了以下问题,在网上找到了解决方案参考网页:http://blog.csdn.net/lynnandwei/article/details/43232447http://stackoverflow.com/questions/27666... 阅读全文
posted @ 2015-12-02 17:17 dupuleng 阅读(1649) 评论(0) 推荐(0) 编辑
摘要:1 >在网站 http://code.google.com/p/protobuf/downloads/list上可以下载 Protobuf 的源代码。然后解压编译安装便可以使用它了。安装步骤如下所示:tar -xzf protobuf-2.1.0.tar.gzcd protobuf-2.1.0./c... 阅读全文
posted @ 2015-12-02 17:08 dupuleng 阅读(2433) 评论(0) 推荐(0) 编辑