Docker配置 下载docker image 共享权限。如果出现user declined directory sharing问题,打开 Do...
在调用pytorch的init模块的时候,出现错误: module 'torch.nn' has no attribute 'init' 但是在...
Hinton的Distillation研究了如何利用一个复杂网络来训练简单网络,但是训练出来的简单网络性能只能逼近复杂网络。而这篇文章则提出了一...
Hinton在15年的这篇文章非常有意思。为了更好的效果,现在训练的DL网络越来越大,而预测的时间也随之增长,这是我们不愿意看到的。所以呢,就有...
GRU算法出自这篇文章:"Learning Phrase Representations using RNN Encoder-Decoder f...
本文主要参考这篇文章 Recurrent Neural Networks 递归神经网络(Recurrent Neural Networks)主要...
在调用pytorch的init模块的时候,出现错误: module 'torch.nn' has no attribute 'init' 但是在...
这里介绍如何利用TensorFlow(r1.1)的dynamic_rnn API对上一篇的代码进行简化。虽然名称上含有动态的意思,实际上却只是把...
上一篇介绍了如何编写单层的LSTM网络。对于一些复杂的序列,需要用到多层的网络进行学习。这里介绍如何利用TensorFlow(r1.1)编写多层...