主页

0

Dynamic Routing Between Capsules

IntroductionThis paper is going to show that a discrimininatively trained, multi-layer capsule system achieves state-of-the-art performance on MNIST and isconsiderably better than a convolutional net

0

升级使用python3.6遇到的一些小事

编码问题之前听说python 3.6极其的好,在编码上面都是UTF-8的,这样可以解决很多自然语言处理中的常见编码问题。事实证明还是会有编码问题,只是解决的方法不像python 2.7那样感觉有点dirty。 以下是python 2.7的环境下解决编码问题的方法123import sysreload(sys)sys.setdefaultencoding('UTF-8') 但是我在使用“高大上”的p

0

macOS Flash 卡顿问题

今天发现打开腾讯NBA和斗鱼的时候,页面非常卡,而且打开Activity Monitor之后,发现Safari里的Flash插件经常CPU 100%,并且会出现未响应。 上网看到一个方法是或者自己手动把 RTMFPP2PDisable=1 这行添加到 /Library/Application\ Support/Macromedia/mms.cfg 这个里面去都可以。 在新 osx 系统里面, sa

0

PyTorch入门

基本操作Tensors可以迁移到cuda上进行操作12345# let us run this cell only if CUDA is availableif torch.cuda.is_available(): x = x.cuda() y = y.cuda() x + y autogradpytorch所有张量的中心是autograd库。而autograd的中心组件是aut