Processing submissions
-
Hi, sorry, I do not get why it takes so long processing submissions. When I run the systems in my notebook, I get results very quickly. When I submit, I need to wait for much longer. Should I change something??
-
@rezhak21 Hello, do not worry, if strategies are processed fine on the notebook, they will run as submissions on the server.
There are 2 reasons why it takes longer:
-
when you submit your code, it is queued together with other systems submitted by other users. Processing time will depend on how many submissions are being processed.
-
you can run your notebook in single-pass mode (processing all data at once) or in multi-pass mode (processing data day-by-day, to avoid looking forward). Single-pass processing is very fast but it can lead to forward-looking results: imagine to define a variable like the global mean of a time series, it will lead to forward looking as you need all the time series to compute the global mean. On the submission cluster we strictly process submissions using a multi-pass approach.
For speeding up evaluation, it is a good idea to remove from your notebook all "research" steps which are not essential for defining allocation weigths, as your code will then need less processing time.
-
-
@support ok, I see, all my systems look processed btw