Open KeepFaithMe opened 2 months ago
@KeepFaithMe are you following the instructions in https://github.com/amazon-science/chronos-forecasting/tree/main/scripts#pretraining-and-fine-tuning-chronos-models?
I am actually facing same error. I first converted M4 hourly dataset into arrow and when creating kernel-synth dataset I set length to 'LENGTH = 748' since length of each serie in M4 is 748 not 1024.
I also converted M4-Hourly dataset into arrow with
# Convert the DataFrame to an Apache Arrow table
arrow_table = pa.Table.from_pandas(hourly_df)
# : Save the table to an Arrow file (Parquet format)
pq.write_table(arrow_table, 'm4_hourly_dataset.arrow')
I passed these two arrow files into config and used chronos-tiny model.
How can I fix the error and generally speaking can you please add tutorials for fine-tuning Chronos on common datasets (I know you used M4 dataset when training Chronos).
I am actually facing same error. I first converted M4 hourly dataset into arrow and when creating kernel-synth dataset I set length to 'LENGTH = 748' since length of each serie in M4 is 748 not 1024.
I also converted M4-Hourly dataset into arrow with
# Convert the DataFrame to an Apache Arrow table arrow_table = pa.Table.from_pandas(hourly_df) # : Save the table to an Arrow file (Parquet format) pq.write_table(arrow_table, 'm4_hourly_dataset.arrow')
I passed these two arrow files into config and used chronos-tiny model.
How can I fix the error and generally speaking can you please add tutorials for fine-tuning Chronos on common datasets (I know you used M4 dataset when training Chronos).
I solved the problem by stacking each serie as list of numpy array.
The dataset name is "train-00000-of-00001.parquet".
I am very confused about this question. When I run the "scripts/training/train.py", the error as follows:
This key is not in the data.