How many predictions do we need to make?

The rules say that the submission needs to finish within 8 hours, but it’s not specified how many predictions we need to make in this time. It would be good to know this so we can estimate whether our model will run within the time limit.

1 Like

Hi, great question: you’ll need to make predictions for t0 and t1 at 58,678 individual times. That’s very roughly half as many as for the training data, so if you can run the training data through in the time limit you have plenty of buffer room.

1 Like

Hi,

Thank you for the answer.

58,678 rows in test and 8 hours limit mean that we have 8 x 60 x 60 / 58678 = 0.49 second limit for one row. Which can be hard in case we use raw data (10080 rows) for calculation complicated statistics such as binned entropy.

Do you have any plans to changing the time limit?

Thank you.

Hi @amogil,

You can try downsampling with some aggregation before other calculation. It will help to speedup.

Hi @amogil. We do not currently have plans to up the time limit. I would suggest pre-computing statistics and caching them if possible. Best of luck!

1 Like