摘要: find . -type f -exec touch {} \; 阅读全文
posted @ 2015-12-02 13:03 Tao Kong 阅读(206) 评论(0) 推荐(0) 编辑
摘要: https://www.ibm.com/developerworks/cn/linux/l-cn-nohup/ 阅读全文
posted @ 2015-09-01 14:00 Tao Kong 阅读(197) 评论(0) 推荐(0) 编辑
摘要: base_lr:初始学习率momentum:上一次梯度权重weight_decay:正则项系数以上三个参数是SGD的核心,关于base_lr和momentum见:http://caffe.berkeleyvision.org/tutorial/solver.html关于weight_decay:ht... 阅读全文
posted @ 2015-06-03 16:32 Tao Kong 阅读(1788) 评论(0) 推荐(0) 编辑
摘要: 其实adaboost可以和很多的分类器结合,具体的操作如ada=AdaBoostClassifier(n_estimators=10, base_estimator=SVC(probability=True)) ada.fit(x_train,y_train)http://stackoverflow... 阅读全文
posted @ 2015-06-01 21:28 Tao Kong 阅读(2562) 评论(0) 推荐(0) 编辑
摘要: 在使用caffe时,我们希望使用自己的数据进行训练,以下给出如何制作自己的数据。所有的数据制作都是基于imagenet的。1.数据准备,我们需要一个train和valid文件夹,一个train.txt和val.txt(图片文件夹的位置可以任意,但是这两个txt文件的位置在data/mydata/目录... 阅读全文
posted @ 2015-03-16 11:24 Tao Kong 阅读(13155) 评论(2) 推荐(0) 编辑
摘要: 1. 安装cuda 一定按照官方教材,官方教材地址:2. 安装blas 别弄那些mlk之类的东西,直接在命令行直接安装就好。3. 运行caffe时要在主目录下进行,否则会有莫名的错误比如:(a)./create_mnist.sh: 16: ./create_mnist.sh: build/examp... 阅读全文
posted @ 2015-03-16 10:59 Tao Kong 阅读(8351) 评论(1) 推荐(1) 编辑
摘要: 网址:http://poj.org/problem?id=1007首先定义一个字符串大小的概念:右边的字母小于前边字母的数量。给定多组字符串,按照大小顺序输出。用到的方法:排序算法首先需要排序,然后对排序后得到的index进行以下的处理index_1[index[i]]=i;最终得到输出。Sampl... 阅读全文
posted @ 2015-01-30 15:11 Tao Kong 阅读(292) 评论(0) 推荐(0) 编辑
摘要: https://github.com/ma6174/vim 阅读全文
posted @ 2015-01-23 20:06 Tao Kong 阅读(187) 评论(0) 推荐(0) 编辑
摘要: iCub Grasp Datasethttps://bitbucket.org/haroldsoh/icub_grasp_dataset/overviewHuman Grasping Databasehttp://grasp.xief.net/anotherhttp://www.csc.kth.se... 阅读全文
posted @ 2015-01-22 23:47 Tao Kong 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: I want to learning deep learning, so config cuda is a essential step. luckily it is very easy in Ubuntuinstall theano+cuda in ubuntu1. install theanoa... 阅读全文
posted @ 2015-01-21 21:14 Tao Kong 阅读(434) 评论(0) 推荐(0) 编辑