上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 84 下一页
摘要: 第一章 归纳(induction):特殊到一般的“泛化”过程,generalization,从具体的事实归纳出一般性规律 演绎(deduction):从一般到特殊的“特化”过程,specialization,从基础原理推演出具体情况。 有归纳偏好:满足条件的模型很多,选择哪个呢? 第二章 过拟合ov 阅读全文
posted @ 2016-09-01 15:44 穆穆兔兔 阅读(504) 评论(0) 推荐(0) 编辑
摘要: Go的50度灰:Golang新开发者要注意的陷阱和常见错误 http://colobu.com/2015/09/07/gotchas-and-common-mistakes-in-go-golang/ 阅读全文
posted @ 2016-09-01 15:06 穆穆兔兔 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 卷积神经网络 卷积层+激活层+池化层(pooling layer) pooling layer, 下采样,压缩数据和参数的量,减少过拟合 阅读全文
posted @ 2016-08-31 17:18 穆穆兔兔 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 在.vimrc中添加以下代码后,重启vim即可实现按TAB产生4个空格:set ts=4 (注:ts是tabstop的缩写,设TAB宽4个空格)set expandtab 对于已保存的文件,可以使用下面的方法进行空格和TAB的替换:TAB替换为空格::set ts=4:set expandtab:% 阅读全文
posted @ 2016-08-30 16:15 穆穆兔兔 阅读(2189) 评论(0) 推荐(0) 编辑
摘要: bool t, f = True, False print type(t) # Prints "<type 'bool'>" 字符串 hello = 'hello' # 实在想不出的时候就用hello world world = "world" print hello, len(hello) # 字 阅读全文
posted @ 2016-08-30 15:16 穆穆兔兔 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 244 pyenv global 3.5.1 245 which python 246 python 247 pip install virtualenv 248 ls 249 pwd 250 ls 251 cd work/ 252 ls 253 mkdir ttttt 254 cd ttttt/ 阅读全文
posted @ 2016-08-30 14:30 穆穆兔兔 阅读(172) 评论(0) 推荐(0) 编辑
摘要: http://www.ttlsa.com/redis/redis-cluster-theoretical-knowledge/ Redis 集群的 TCP 端口(Redis Cluster TCP ports) 每个 Redis 集群节点需要两个 TCP 连接打开。正常的 TCP 端口用来服务客户端 阅读全文
posted @ 2016-08-26 10:54 穆穆兔兔 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 基于setnx和getset http://blog.csdn.net/lihao21/article/details/49104695 使用Redis的 SETNX 命令可以实现分布式锁,下文介绍其实现方法。 SETNX命令简介 命令格式 SETNX key value 将 key 的值设为 va 阅读全文
posted @ 2016-08-25 15:56 穆穆兔兔 阅读(17210) 评论(1) 推荐(0) 编辑
摘要:  http://www.slideshare.net/matthewrdale/demystifying-the-go-scheduler http://www.cs.columbia.edu/~aho/cs6998/reports/12-12-11_DeshpandeSponslerWeiss_ 阅读全文
posted @ 2016-08-24 15:35 穆穆兔兔 阅读(1924) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-08-22 16:39 穆穆兔兔 阅读(804) 评论(0) 推荐(0) 编辑
上一页 1 ··· 29 30 31 32 33 34 35 36 37 ··· 84 下一页