【发布时间】:2022-01-23 10:14:33
【问题描述】:
我是 AI 初学者,正在尝试在 Keras 中实现 CRNN 模型。
model.add(TimeDistributed(base_model, input_shape=(3,32,32,3)))
我知道上面的代码创建了 3 个时间步并使用 32x32 RGB 图像。
那么,如果我有 90 个 train_image 并将批量大小设置为 30,它是如何工作的?
grouped 30 pieces and entered into the timestep
或
还是我对批量大小有误解?
【问题讨论】:
标签: tensorflow artificial-intelligence