如何将 Azure 数据集标记为从具有日期分区的镶木地板文件夹中读取的时间序列数据集?
How can I mark an Azure Dataset as a time series dataset reading from a parquet folder with date partitions?
我想通过这种方式从包含 parquet 文件的文件夹创建时间序列数据集:
- 时间戳=2018-01-06
- 时间戳=2018-01-07
如何通过 GUI 使 Azure Dataset 将时间戳分区识别为日期并将我的数据集标记为时间序列数据集?
它应该是自动的,但它不起作用。
感谢您联系我们。
在 Azure Machine Learning Studio 中,您需要设置类似于 python SDK 的分区格式,如下所示,假设您的数据路径为“timeseries/timestamp=2020-01-01/data.parquet":
Set up partition format when creating time series dataset
我想通过这种方式从包含 parquet 文件的文件夹创建时间序列数据集:
- 时间戳=2018-01-06
- 时间戳=2018-01-07
如何通过 GUI 使 Azure Dataset 将时间戳分区识别为日期并将我的数据集标记为时间序列数据集?
它应该是自动的,但它不起作用。
感谢您联系我们。
在 Azure Machine Learning Studio 中,您需要设置类似于 python SDK 的分区格式,如下所示,假设您的数据路径为“timeseries/timestamp=2020-01-01/data.parquet": Set up partition format when creating time series dataset