240 发简信
IP属地:广东
  • DeepLearning+Docker+SSH

    Docker配置 下载docker image 共享权限。如果出现user declined directory sharing问题,打开 Do...

  • pytorch报错:module 'torch.nn' has no attribute 'init'

    在调用pytorch的init模块的时候,出现错误: module 'torch.nn' has no attribute 'init' 但是在...

  • Resize,w 360,h 240
    论文解读:Recurrent Neural Network Training with Dark Knowledge Transfer

    Hinton的Distillation研究了如何利用一个复杂网络来训练简单网络,但是训练出来的简单网络性能只能逼近复杂网络。而这篇文章则提出了一...

  • 论文解读:Distilling the Knowledge in a Neural Network

    Hinton在15年的这篇文章非常有意思。为了更好的效果,现在训练的DL网络越来越大,而预测的时间也随之增长,这是我们不愿意看到的。所以呢,就有...

  • Resize,w 360,h 240
    论文解读:Gated Recurrent Unit

    GRU算法出自这篇文章:"Learning Phrase Representations using RNN Encoder-Decoder f...

  • Resize,w 360,h 240
    理解LSTM

    本文主要参考这篇文章 Recurrent Neural Networks 递归神经网络(Recurrent Neural Networks)主要...

  • pytorch报错:module 'torch.nn' has no attribute 'init'

    在调用pytorch的init模块的时候,出现错误: module 'torch.nn' has no attribute 'init' 但是在...

  • RNN入门:多层LSTM网络(五)

    这里介绍如何利用TensorFlow(r1.1)的dynamic_rnn API对上一篇的代码进行简化。虽然名称上含有动态的意思,实际上却只是把...

  • RNN入门:多层LSTM网络(四)

    上一篇介绍了如何编写单层的LSTM网络。对于一些复杂的序列,需要用到多层的网络进行学习。这里介绍如何利用TensorFlow(r1.1)编写多层...