Does the daily data require new models?

I didn’t hear anything about new data, so I’m going to assume that any old models are compatible with daily submissions. Basically, everything is exactly the same as before, but we now have additional rounds Tuesday - Friday. Wanted to confirm my understanding before staking anything on the new rounds.

No difference in models. Daily live data has the same features.

Only thing that broke on my pipeline was downloading v2 numerai_tournament_data.csv which is not updated for daily rounds.

Need to use api live data v2 instead:
napi.download_dataset('v2/numerai_live_data.csv', f"live_{current_round}_v2.csv")

2 Likes

If anyone has issues with that line of code, I was able to get it to work this way:

napi.download_dataset(‘v2/numerai_live_data.csv’, f"live_{‘current-round’}_v2.csv")

1 Like