microprediction / timemachines

Predict time-series with one line of code.
https://www.microprediction.com/blog/popular-timeseries-packages
MIT License
395 stars 51 forks source link

top_rated_model fails with k=2 #32

Open microprediction opened 2 years ago

microprediction commented 2 years ago

this is almost certainly aftermath of JSON leaderboard corruption. Reproduce bug as follows:

  from timemachines.skatertools.recommendations.suggestions import top_rated_models, get_ratings
  from pprint import pprint 
  max_seconds = 1
  min_count = 10
  for k in [1,2, 5,13]:
     print('k='+str(k))
     suggestions = top_rated_models(k=k,max_seconds=500, require_passing=True)
     pprint(suggestions)
     print('')