steps_per_epoch = train_image.shape[0]/batch_siae
时间: 2024-05-29 18:13:27 浏览: 104
CC++日期时间time_t与struct_tm转换
5星 · 资源好评率100%
这是一个用于计算每个 epoch 中步骤数量的公式,其中 train_image.shape[0] 表示训练数据集中的图像数量,batch_size 表示每个 batch 中包含的图像数量。具体地说,steps_per_epoch 表示在一个 epoch 中需要执行的 batch 数量。例如,如果训练数据集中有 100 张图像,batch_size 为 10,那么在一个 epoch 中需要执行 10 个 batch,因此 steps_per_epoch 将为 10。
阅读全文