Good morning, I tried to load a simple dataset with order date and quantity ordered from systeline customer orders with Easy ML, although it is clearly a dataset to train a time series it does not propose the time series algorithm, so in the quest I tried to make changes but I cannot understand the error returned.
Train Model
AlgorithmError: Exception during training: 'DataFrame' object has no attribute 'TSId'Traceback (most recent call last): File "/opt/program/train", line 95, in <module> model = trainer.train(target_df) ^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/local/lib/python3.12/site-packages/custom_algorithm/core/trainer.py", line 282, in train series = [data.loc[data.TSId == x] for x in data.TSId.unique()] ^^^^^^^^^ File "/usr/local/lib/python3.12/site-packages/pandas/core/generic.py", line 6299, in __getattr__ return object.__getattribute__(self, name) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^AttributeError: 'DataFrame' object has no attribute 'TSId', exit code: 255