Datasets
The Bird Game runs against live data, so there are no datasets to download
Please use one of our Quickstarters to load the data or use the code below to start out with an empty notebook:
!pip install birdgame river
from birdgame.trackers.trackerbase import TrackerBase
class MyTracker(TrackerBase):
def __init__(self):
super().__init__(10) # sets the Horizon
def tick(self, payload):
print(payload)
# Initialize Tracker
tracker = MyTracker()
# Run on remote test data
tracker.test_run(live=False)
# OR, run on live test data (not available on weekends)
tracker.test_run(live=True)
Copyright © 2024 Crunch Lab Inc. All rights reserved.
36 Manchester Drive, Westfield, New Jersey, 07090, United States