AmazingCounters.com
上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: https://www.zybuluo.com/NumberFairy/note/1224737 阅读全文
posted @ 2018-07-25 08:48 小明今晚不加班 阅读(248) 评论(0) 推荐(0)
摘要: 本人实验中使用feed的方式填充数据,sess处的代码如下: 运行的时候出现:{TypeError}unhashable type: 'numpy.ndarray' 后 来 发 现: 在session外边定义input和target的时候是这么写的: 然而,我在开启session后又定义了input 阅读全文
posted @ 2018-07-02 10:35 小明今晚不加班 阅读(8474) 评论(0) 推荐(0)
摘要: 见本人作业部落markdown:Python高级函数 阅读全文
posted @ 2018-07-02 10:05 小明今晚不加班 阅读(250) 评论(0) 推荐(0)
摘要: 1 public class Percent { 2 @Test 3 public void getPercent() { 4 double d1 = 24.58D; 5 double d2 = 30.86D; 6 NumberFormat nt = NumberFormat.getPercentInstance(); 7 //设置百分数保留两位小数 8 nt.se... 阅读全文
posted @ 2018-07-02 10:00 小明今晚不加班 阅读(4874) 评论(0) 推荐(0)
摘要: 查看你的python所支持的whl 文件类型(非常重要,否则会发生:* is not a supported wheel on this platform错误) 阅读全文
posted @ 2018-04-12 15:18 小明今晚不加班 阅读(1121) 评论(0) 推荐(0)
摘要: 要做人脸识别的实例,在安装dlib时遇到很多坑,特此总结: 本人的初始环境:windows系统+anaconda3+python3.6 安装dlib时一定要注意python版本和dlib的版本 这里给出dlib的链接地址:dlib-19.7.0-cp36-cp36m-win_amd64.whl (m 阅读全文
posted @ 2018-03-14 15:44 小明今晚不加班 阅读(263) 评论(0) 推荐(0)
摘要: 查看某个文件夹大小:du -sh 文件名 查看某挂载项下所有文件占用磁盘情况: df -f /home 阅读全文
posted @ 2018-01-30 11:15 小明今晚不加班 阅读(124) 评论(0) 推荐(0)
摘要: np.dot numpy.dot(a, b, out=None) ~~~Dot product of two arrays. Specifically, If both a and b are 1-D arrays, it is inner product of vectors (without c 阅读全文
posted @ 2018-01-17 09:46 小明今晚不加班 阅读(505) 评论(0) 推荐(0)
摘要: ResNets:即残差网络,能帮助解决由于网络结构过于deep而产生的梯度消失问题。 Two main types of blocks are used in a ResNet, depending mainly on whether the input/output dimensions are 阅读全文
posted @ 2018-01-04 16:16 小明今晚不加班 阅读(230) 评论(0) 推荐(0)
摘要: mini-batch梯度下降当我们的training set比较小的时候,我们经常利用向量化的方法一次性把整个trainjing set都投入到训练中,当然,当数据量小的时候当然可以这么用;但是如果数据量比较大的时候呢?(这个数据量大一般指大于2000)我们如果还是采用一次性把所有的training 阅读全文
posted @ 2017-12-07 21:21 小明今晚不加班 阅读(350) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 8 下一页