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)

Useful Informations

  1. Find a dummy submission in the following Quickstarter Notebook
  2. Upload the data to Colab. For easier access, use the Crunch CLI!
  3. Upload your Notebook and submit.

Learn more how the submit process works.

Copyright © 2024 Crunch Lab Inc. All rights reserved.

36 Manchester Drive, Westfield, New Jersey, 07090, United States