Skip to content
README.md 5.82 KiB
Newer Older
Aaron Spring's avatar
Aaron Spring committed
# S2S AI Challenge Template
Aaron Spring's avatar
Aaron Spring committed
This is a template repository with running examples how to join and contribute to
Aaron Spring's avatar
Aaron Spring committed
the `s2s-ai-challenge`.
Aaron Spring's avatar
Aaron Spring committed

You were likely referred here from the [public website](https://s2s-ai-challenge.github.io/).

Aaron Spring's avatar
Aaron Spring committed
The competition starts in June, so examples are still work in progress
Aaron Spring's avatar
Aaron Spring committed
and joining the competition not possible until then, but you can already look around.
Aaron Spring's avatar
Aaron Spring committed
If you fork this project before June, please rebase or fork again in June.
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
Find an overview of [repositories and websites](https://renkulab.io/gitlab/aaron.spring/s2s-ai-challenge/-/wikis/Flow-of-information:-Where-do-I-find-what%3F)

## Introduction

This is a Renku project - basically a git repository with some
bells and whistles. You'll find we have already created some
useful things like `data` and `notebooks` directories and
a `Dockerfile`.

Aaron Spring's avatar
Aaron Spring committed
## Join the challenge
Aaron Spring's avatar
Aaron Spring committed
### 1. The simplest way to join the S2S AI Challenge is forking this renku project.
Aaron Spring's avatar
Aaron Spring committed
Ensure that you do not fork the gitlab repository, but the renku project.
Aaron Spring's avatar
Aaron Spring committed

Fork this template renku project from https://renkulab.io/projects/aaron.spring/s2s-ai-challenge-template/settings.

Aaron Spring's avatar
Aaron Spring committed
<img src="docs/screenshots/fork_renku.png" width="300">
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
Name your fork `s2s-ai-challenge-$TEAMNAME`.

Aaron Spring's avatar
Aaron Spring committed
Your fork will inherit the tags from the template repo. The tag `s2s-ai-challenge` is needed for the `scorer` bot to find your repo.

Aaron Spring's avatar
Aaron Spring committed
### 2. Fill our [registration form](https://docs.google.com/forms/d/1KEnATjaLOtV-o4N8PLinPXYnpba7egKsCCH_efriCb4).

Aaron Spring's avatar
Aaron Spring committed
Registrations are not required before October 31st 2021, but highly [appreciated for the flow of information](https://renkulab.io/gitlab/aaron.spring/s2s-ai-challenge/-/issues/4).

Aaron Spring's avatar
Aaron Spring committed
### 3. Make the project private
Aaron Spring's avatar
Aaron Spring committed

Now check out the gitlab repository by clicking on "View in gitlab".
Under "Settings" - "General" - "Visibility" you can set your project private.

<img src="docs/screenshots/gitlab_visibility.png" width="300">

Now other people cannot steal your idea/code.

Aaron Spring's avatar
Aaron Spring committed
Now please modify the README in your fork with team details and a
description of your method.

Aaron Spring's avatar
Aaron Spring committed
Please use different branches if you try out different methods. The scorer finds branches from all branches.
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
### 4. Add the `scorer` user to your repo with Reporter permissions
The scorer is not yet ready, but will follow this [verification notebook](https://renkulab.io/gitlab/aaron.spring/s2s-ai-challenge-template/-/blob/master/notebooks/verification_RPSS.ipynb).
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
Todo: How to add scorer to repo
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
## Make Predictions
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
### 5. Start jupyter on renku or locally
Aaron Spring's avatar
Aaron Spring committed
The simplest way to contribute is right from the Renku platform - 
just click on the `Environments` tab in your renku project and start a new session.
This will start an interactive environment right in your browser.

Aaron Spring's avatar
Aaron Spring committed
<img src="docs/screenshots/renku_start_env.png" width="300">

If the docker image fails initially, please re-build docker or touch the `enviroment.yml` file.

To work with the project anywhere outside the Renku platform,
click the `Settings` tab where you will find the
Aaron Spring's avatar
Aaron Spring committed
renku project URLs - use `renku clone` to clone the project on whichever machine you want.
Install [renku first with `pipx`](https://renku-python.readthedocs.io/en/latest/installation.html),
and then `renku clone https://renkulab.io/gitlab/$YOURNAME/s2s-ai-challenge-$GROUPNAME.git`
Aaron Spring's avatar
Aaron Spring committed
### 6. Train your Machine Learning model
Aaron Spring's avatar
Aaron Spring committed

Get training data via 
Aaron Spring's avatar
Aaron Spring committed
- [climetlab](https://github.com/ecmwf-lab/climetlab-s2s-ai-challenge)
- [renku datasets](https://renku.readthedocs.io/en/stable/user/data.html)
Aaron Spring's avatar
Aaron Spring committed

Get corresponding observations/ground truth:
- [climetlab](https://github.com/ecmwf-lab/climetlab-s2s-ai-challenge)
Aaron Spring's avatar
Aaron Spring committed
- IRIDL: [temperature](http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP/.CPC/.temperature/.daily/) and accumulated [precipitation](http://iridl.ldeo.columbia.edu/SOURCES/.NOAA/.NCEP/.CPC/.UNIFIED_PRCP/.GAUGE_BASED/.GLOBAL/.v1p0/.extREALTIME/.rain)
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
### 7. Let the Machine Learning model perform subseasonal 2020 predictions
Aaron Spring's avatar
Aaron Spring committed
and save them as `netcdf` files.
Aaron Spring's avatar
Aaron Spring committed
The submissions have to placed in the `submissions` folder with filename `submission_your_choice.nc`,
see [example](https://renkulab.io/gitlab/aaron.spring/s2s-ai-competition-bootstrap/-/blob/master/submissions/submission_rb_prediction_2020.nc).
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
### 8. `git commit` training pipeline and netcdf submission
For later verification of the organizers and reviewers, reproducibility and scoring of submissions,
the training notebook/pipeline and submission file `ML_prediction_2020.nc` must be committed with `git lfs`:

Aaron Spring's avatar
Aaron Spring committed
```bash
Aaron Spring's avatar
Aaron Spring committed
# run your training and create file ../submissions/ML_prediction_2020.nc
git lfs track "*.nc" # do once, already done in template
git add ../submissions/ML_prediction_2020.nc
git commit -m "commit submission for my_method_name" # whatever message you want
git tag "submission-my_method_name-0.0.1" # if this is to be checked by scorer, only the last submitted==tagged version will be considered
Aaron Spring's avatar
Aaron Spring committed
git push --tags
```
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
### 9. RPSS scoring by `scorer` bot
Aaron Spring's avatar
Aaron Spring committed
The `scorer` will fetch your tagged submissions, score them with RPSS against recalibrated ECMWF real-time forecasts.
Aaron Spring's avatar
Aaron Spring committed
Your score will be added to the private leaderboard, which will be made public in early November 2021.
Aaron Spring's avatar
Aaron Spring committed

The `scorer` is not active for the competition yet.
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
## More information
Aaron Spring's avatar
Aaron Spring committed

- in the [`s2s-ai-challenge` wiki](https://renkulab.io/gitlab/aaron.spring/s2s-ai-challenge/-/wikis/Home)
- all different resources for this [competition](https://renkulab.io/gitlab/aaron.spring/s2s-ai-challenge/-/wikis/Flow-of-information:-Where-do-I-find-what%3F)
Aaron Spring's avatar
Aaron Spring committed

Aaron Spring's avatar
Aaron Spring committed
## Changing interactive environment dependencies

Initially we install a very minimal set of packages to keep the images small.
However, you can add python and conda packages in `requirements.txt` and
`environment.yml` to your heart's content. If you need more fine-grained
control over your environment, please see [the documentation](https://renku.readthedocs.io/en/latest/user/advanced_interfaces.html#dockerfile-modifications).