(len(data) // batch_size) - 1 为什么要-1

来源:4-28 动手实现RNN-LSTM循环神经网络(四):编写实用方法(下)2

Giroy3925940

2018-07-23

self.epoch_size = ((len(data) // batch_size) - 1) // num_steps

写回答

1回答

Oscar

2018-09-22

对这个例子来说,你去掉 -1 也是没有区别的。

有 -1 和没有 -1,是一样的:

Input : Batch_len : 20
Input : Num_steps : 35
Input : Epoch_size : 1327
__________
Input : Batch_len : 20
Input : Num_steps : 35
Input : Epoch_size : 1327


0
0

基于Python玩转人工智能最火框架 TensorFlow应用实践

机器学习入门,打牢TensorFlow框架应用是关键!

2214 学习 · 688 问题

查看课程