上一页 1 2 3 4 5 6 7 8 9 ··· 35 下一页

2018年10月17日

Caffe、TensorFlow、MXnet三个开源库对比+主流分类模型对比

摘要: 安装难度: (简单) –> **(复杂) 文档风格: (一般) –> **(好看、全面) 示例: (给的少) –> **(给的多、全) 上手难易: (易) –> **(难) 1.基本数据结构 caffe的数据存储类blob,当把数据可以看成是一个N维的c数组,它们的存储空间连续。例如存储图片是4维( 阅读全文

posted @ 2018-10-17 10:43 Maddock 阅读(2767) 评论(0) 推荐(0) 编辑

L1&L2 Regularization的原理

摘要: L1&L2 Regularization 正则化方法:防止过拟合,提高泛化能力 在训练数据不够多时,或者overtraining时,常常会导致overfitting(过拟合)。其直观的表现如下图所示,随着训练过程的进行,模型复杂度增加,在training data上的error渐渐减小,但是在验证集 阅读全文

posted @ 2018-10-17 10:09 Maddock 阅读(2237) 评论(0) 推荐(0) 编辑

2018年10月16日

在linux环境下编译android so库

摘要: (1) 配置Android NDK环境 https://developer.android.google.cn/ndk/downloads/older_releases.html 1.下载android-ndk64-r10b-linux-x86_64.tar.bz2,下载地址:http://dl.g 阅读全文

posted @ 2018-10-16 11:34 Maddock 阅读(1118) 评论(0) 推荐(0) 编辑

2018年10月12日

ubuntu GCC 版本切换

摘要: (1) 查看gcc以及g++的版本 gcc -v g++ -v 当前的版本是5.5 (2) 现在需要切换到6.0 首先安装gcc6.0 sudo apt-get install gcc-6.0sudo apt-get install g++-6.0 (3) 进入/usr/bin 目录 ll 查看 可 阅读全文

posted @ 2018-10-12 13:43 Maddock 阅读(1733) 评论(0) 推荐(0) 编辑

2018年9月30日

深度学习的batch_size

摘要: 知乎讨论: https://www.zhihu.com/question/61607442/answer/204675996 案例一 http://www.myzaker.com/article/5a68020fd1f1495d57000030/ Training Imagenet in one h 阅读全文

posted @ 2018-09-30 10:59 Maddock 阅读(973) 评论(0) 推荐(0) 编辑

2018年9月29日

Ubuntu下CUDA8.0卸载

摘要: Ubuntu下CUDA8.0卸载 https://www.jianshu.com/p/45e07114463a 由于目前CUDA9.0已经发布,很多朋友需要升级,而在升级前需要卸载CUDA8.0,方法如下 sudo /usr/local/cuda-8.0/bin/uninstall_cuda_8.0 阅读全文

posted @ 2018-09-29 16:04 Maddock 阅读(1599) 评论(0) 推荐(0) 编辑

2018年9月14日

Numpy 定义矩阵的方法

摘要: import numpy as np #https://www.cnblogs.com/xzcfightingup/p/7598293.html a = np.zeros((2,3),dtype=int) a = np.ones((2,3),dtype=int) a = np.eye(3)#3维单位矩阵 a = np.empty([2,3],dtype=int) a = np.rando... 阅读全文

posted @ 2018-09-14 08:51 Maddock 阅读(473) 评论(0) 推荐(0) 编辑

2018年9月6日

python 按照自然数排序遍历文件 python os.listdir sort by natural sorting

摘要: 参考 https://stackoverflow.com/questions/4813061/non-alphanumeric-list-order-from-os-listdir Python for whatever reason does not come with a built-in wa 阅读全文

posted @ 2018-09-06 11:03 Maddock 阅读(772) 评论(0) 推荐(0) 编辑

2018年8月31日

linux 将终端进行换行

摘要: 原始 修改 修改方法 vim .bashrc fi if [ "$color_prompt" = yes ]; then PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w 阅读全文

posted @ 2018-08-31 15:10 Maddock 阅读(4047) 评论(0) 推荐(0) 编辑

2018年8月29日

从LeNet到SENet——卷积神经网络回顾

摘要: 从LeNet到SENet——卷积神经网络回顾 从LeNet到SENet——卷积神经网络回顾 从 1998 年经典的 LeNet,到 2012 年历史性的 AlexNet,之后深度学习进入了蓬勃发展阶段,百花齐放,大放异彩,出现了各式各样的不同网络,包括 LeNet、AlexNet、ZFNet、VGG 阅读全文

posted @ 2018-08-29 15:59 Maddock 阅读(409) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 35 下一页

导航