下面的函数中的参数各自代表什么意思def create_tf_dataset( data_array: np.ndarray, input_sequence_length: int, forecast_horizon: int, batch_size: int = 128, shuffle=True, multi_horizon=True, ):
时间: 2023-04-06 21:03:08 浏览: 171
这个函数是用来创建 TensorFlow 的数据集的,其中参数的含义如下:
- data_array: np.ndarray,代表输入的数据数组。
- input_sequence_length: int,代表输入序列的长度。
- forecast_horizon: int,代表预测的时间步数。
- batch_size: int,代表每个批次的大小。
- shuffle: bool,代表是否打乱数据集。
- multi_horizon: bool,代表是否使用多个预测时间步数。
阅读全文