Closed luboshanus closed 5 months ago
Can you share the exact script that you are testing? The error is just indicating (I think) that the train dataset is empty. Can you share the file that you are giving to the model and the exact code that you are running in recalibrating_lear_simplified.py
Closing due to inactivity
Hi,
I am trying to run your code with my own data set and it always produces errors. I have data with Date in correct format as
index
,Price
column, and some exogenous. If I run function to prepare date, it prepares it well, then at some point is always stops.A bit annoyed after some time, I wanted to just to try your data with different timespan. I made a
.csv
from DE, starting at2014-11-16 00:00:00
and ending at2016-03-29 23:00:00
, having 12000 observations, it is divisible by 24. Named it DE.csv and run:nohup python3 examples/recalibrating_lear_simplified.py > 01_log.txt &
The error now is this
Comparison, how the new (cropped)
DE.csv
looks like,DE_orig.csv
is yours.If you could check this problem above and help, it would be appreciated.
Thank you.
Sidenote: With my data, or even yours, there are errors as NaN - probably because of scalers. Or that some date+hour does not exist in the dataset, and when looking into
xyz.csv
it is present in the data but test set is probably wrongly defined, even when begin and end of test set is left None.