因为乌鸦像写字台 2019-04-06 15:23 采纳率: 50%
浏览 1095
已采纳

RNN 展开实现LSTM按时间步迭代时,有必要令reuse=true么?

我看到很多样例代码中, 展开实现LSTM按时间步迭代时,都如下加上了一句

if timestep > 0:
    tf.get_variable_scope().reuse_variables()

我查了各类RNN CELL类的源代码,发现除了call函数外,还有build函数(此函数似乎是在创建所有的变量),且此函数只调用一次,并且是在call调用之前调用,并且查看源码注释时发现是这样写的:

    For backwards compatibility purposes, most RNNCell instances allow their call methods to instantiate variables via tf.get_variable. The underlying variable scope thus keeps track of any variables, and returning cached versions. This is atypical of tf.layer objects, which separate this part of layer building into a build method that is only called once.
    Here we provide a subclass for RNNCell objects that act exactly as Layer objects do. They must provide a build method and their call methods do not access Variables tf.get_variable

所以我个人认为这句不需要加,求各位帮忙解答下,该不该加这句话?

  • 写回答

1条回答 默认 最新

  • threenewbee 2019-04-06 16:19
    关注

    看你的数据是怎样的,如果每组数据之间在时序上独立,就不要reuse,否可可以use。简单来说,不用reuse,也就是不共享权值不会有什么大影响,但是错误用了它,会导致正确率不上升。

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 shape_predictor_68_face_landmarks.dat
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制