来自keras docs:然后您可以使用TimeDistributed
将Dense
图层分别应用于10个时间段中的每一个:
# as the first layer in a model
model = Sequential()
model.add(TimeDistributed(Dense(8), input_shape=(10, 16)))
# now model.output_shape == (None, 10, 8)
# subsequent layers: no need for input_shape
model.add(TimeDistributed(Dense(32)))
# now model.output_shape == (None, 10, 32)
我无法在任何地方找到它,Dense
图层的权重是否在时间轴上共享?
答案 0 :(得分:6)
是的,它们是共享的 - 每个@Html.DropDownListFor(model => model.CustomerId, Model.CustomerList, "---Select one---", new { @class = "company" });
都应用了完全相同的Dense
。此外 - 在timestep
中,Keras 2.0
之类的行为现在是应用于输入的TimeDistributed
图层的默认值,其中包含的内容超过2D(包括Dense
)。