摘要: ## Install> dpkg --install, -i [deb]> apt-get install [package]> aptitude install [package]## Remove> dpkg --remove, -r [package]> dpkg --purge, -P [p... 阅读全文
posted @ 2015-03-18 01:21 n0p 阅读(311) 评论(0) 推荐(0) 编辑
摘要: - `cross entropy` loss is not quite the same as optimizing classification accuracy. Althougth the two are correlated.- It's not necessarily true tha... 阅读全文
posted @ 2015-03-18 00:20 n0p 阅读(250) 评论(0) 推荐(0) 编辑
摘要: ## Show current machine architecture> dpkg --print-architectureIt's built-in to the currently installed `dpkg` package.## Usageuse 'package:architectu... 阅读全文
posted @ 2015-03-18 00:15 n0p 阅读(179) 评论(0) 推荐(0) 编辑
摘要: Download from [搜狗输入法 for Linux](http://pinyin.sogou.com/linux/)> sudo dpkg -i sogoupinyin_1.2.0.0042_amd64.debSet input method in `Fcitx`, - Add inpu... 阅读全文
posted @ 2015-03-17 23:17 n0p 阅读(170) 评论(0) 推荐(0) 编辑
摘要: ## apt-getUse `apt-get` with the "--print-uris" option to do it. I also add "-qq" so it would be quiet.### Create script:> sudo apt-get >> --print-uri... 阅读全文
posted @ 2015-03-13 06:24 n0p 阅读(480) 评论(0) 推荐(0) 编辑
摘要: # Visual demostration![relationship](http://algebraicthunk.net/~dburrows/blog/entry/images/apt-diagram-simple.png)![relationship2](http://algebraicthu... 阅读全文
posted @ 2015-03-13 04:42 n0p 阅读(124) 评论(0) 推荐(0) 编辑
摘要: map words to vector space: $ W("cat") = (0.2, -0.4, 0.8, \cdots) $Ref:1. [Deep Learning, NLP, and Representations](http://colah.github.io/posts/2014-0... 阅读全文
posted @ 2015-03-08 00:37 n0p 阅读(219) 评论(0) 推荐(0) 编辑
摘要: #An example```java#include #include #include using namespace std;using namespace boost::python;#define show(x) cout derived_as_base(){ return shar... 阅读全文
posted @ 2014-12-19 01:38 n0p 阅读(383) 评论(0) 推荐(0) 编辑
摘要: `Metafunction` is a more general idiom than `type generator`. Metafunctions that produce type(s) as a result is used as `type generators`.#Appearance:... 阅读全文
posted @ 2014-12-19 00:28 n0p 阅读(289) 评论(0) 推荐(0) 编辑
摘要: ### A crude explanation# ConceptA set of requirements on a type, e.g. a *RandomAccessible* **concept** requires the type implements:`operator[] (int)`... 阅读全文
posted @ 2014-12-18 23:16 n0p 阅读(387) 评论(0) 推荐(0) 编辑