AI weather models united.
Project description
🔥 Run state-of-the-art large weather models in less than 2 minutes.
🌪️ Ensemble and fine-tune to push the limits on forecasting.
🌎 Simulate extreme weather events!
Getting Started
Skyrim allows you to run any large weather model with a consumer grade GPU.
Until very recently, weather forecasts were run in 100K+ CPU HPC clusters, solving massive numerical models. Within last 2 years, open-source foundation models trained on weather simulation datasets surpassed the skill level of these numerical models.
Our goal is to make these models accessible by providing a well maintained infrastructure.
Installation
Clone the repo, set an env (either conda or venv) and then run
pip install .
Depending on your use-case (i.e. AWS storage needs or CDS initial conditions), you may need to fill in a .env
by cp .env.example .env
.
Run your first forecast
Skyrim currently supports either running on on modal, on a container –for instance vast.ai or bare metal(you will need an NVIDIA GPU with at least 24GB and installation can be long).
Modal is the fastest option, it will run forecasts "serverless" so you don't have to worry about the infrastructure.
Forecasting using Modal:
You will need a modal key. Run modal setup
and set it up (<1 min).
Modal comes with $30 free credits and a single forecast costs about 2 cents as of May 2024.
Once you are all good to go, then run:
modal run skyrim/modal/forecast.py
This by default uses pangu
model to forecast for the next 6 hours, starting from yesterday. It gets initial conditions from NOAA GFS and writes the forecast to a modal volume. You can choose different dates and weather models as shown in here.
After you have your forecast, you can explore it by running a notebook (without GPU, so cheap) in modal:
modal run skyrim/modal/forecast.py::run_analysis
This will output a jupyter notebook link that you can follow and access the forecast. For instance, to read the forecast you can run from the notebook the following:
import xarray as xr
forecast = xr.open_dataset('/skyrim/outputs/[forecast_id]/[filename], engine='scipy')
Once you are done, best is to delete the volume as a daily forecast is about 2GB:
modal volume rm forecasts /[model_name] -r
If you don't want to use modal volume, and want to aggregate results in a bucket (currently only s3), you just have to run:
modal run skyrim/modal/forecast.py --output_dir s3://skyrim-dev
where skyrim-dev
is the bucket that you want to aggregate the forecasts. By default, zarr
format is used to store in AWS/GCP so you can read and move only the parts of the forecasts that you need.
Forecasting with your own GPUs:
If you are running on your own GPUs, installed either via bare metal or via vast.ai then you can just run:
forecast
or you can pass in options as such:
forecast -m graphcast --lead_time 24 --initial_conditions cds --date 20240330
See examples section for more.✌️
Bare metal
- You will need a NVIDIA GPU with at least 16GB memory, ideally 24GB. We are working on quantization as well so that in the future it would be possible to run simulations with much less compute. Have an environment set with Python +3.10, Pytorch 2.2.2 and CUDA 11.8. Or if easier start with the docker image:
pytorch/pytorch:2.2.2-cuda11.8-cudnn8-devel
. - Install conda (miniconda for instance). Then run in that environment:
conda create -y -n skyenv python=3.10
conda activate skyenv
./build.sh
Note: Because we will be building from scratch this can take long (we need to install pytorch extensions through NVIDIA Apex package).
vast.ai setup
- Find a machine you like RTX3090 or above with at least 24GB memory. Make sure you have good bandwith (+500MB/s).
- Select the instance template from here.
- Then clone the repo and
pip install . && pip install -r requirements.txt
Run forecasts with different models, initial conditions, dates
For each run, you will first pull the initial conditions of your interest (most recent one by default), then the model will run for the desired time step. Initial conditions are pulled from GFS, ECMWF IFS (Operational) or CDS (ERA5 Reanalysis Dataset).
If you are using CDS initial conditions, then you will need a CDS API key in your .env
–cp .env.example
and paste.
Examples
All examples are from local setup, but you can run them as it is if you just change forecast
to modal run skyrim/modal/forecast.py
and also make snake case kebab-case -i.e. model_name
to model-name
.
Example 1: Pick models, initial conditions, lead times
Forecast using graphcast
model, with ERA5 initial conditions, starting from 2024-04-30T00:00:00 and with a lead time of a week (forecast for the next week, i.e. 168 hours):
forecast --model_name graphcast --initial_conditions cds --date 20240403 -output_dir s3://skyrim-dev --lead_time 168
or in modal:
modal run skyrim/modal/forecast.py --model-name graphcast --initial-conditions cds --date 20240403 --output-dir s3://skyrim-dev --lead-time 168
Example 2: Store in AWS and then read only what you need
Say you re interested in wind at 37.0344° N, 27.4305 E to see if we can kite tomorrow. If we need wind speed, we need to pull wind vectors at about surface level, these are u10m and v10m components of wind. Here is how you go about it:
modal run skyrim/modal/forecast.py --output-dir s3://[your_bucket]/[optional_path] --lead-time 24
Then you can read the forecast as below:
import xarray as xr
import pandas as pd
zarr_store_path = "s3://[your_bucket]/[forecast_id]"
forecast = xr.open_dataset(zarr_store_path, engine='zarr') # reads the metadata
df = forecast.sel(lat=37.0344, lon=27.4305, channel=['u10m', 'v10m']).to_pandas()
Normally each day is about 2GB but using zarr_store you will only fetch what you need.✌️
Supported initial conditions and caveats
- NOAA GFS
- ECMWF IFS
- ERA5 Re-analysis Dataset
Large weather models supported
Currently supported models are:
License
For detailed information regarding licensing, please refer to the license details provided on each model's main homepage, which we link to from each of the corresponding components within our repository.
-
Fuxi: Original
Roadmap
- ensemble prediction
- interface to fetch real-time NWP-based predictions, e.g. via ECMWF API.
- global model performance comparison across various regions and parameters.
- finetuning api that trains a downstream model on top of features coming from a global/foundation model, that is optimized wrt to a specific criteria and region
- model quantization and its effect on model efficiency and accuracy.
This README will be updated regularly to reflect the progress and integration of new models or features into the library. It serves as a guide for internal development efforts and aids in prioritizing tasks and milestones.
Development
All in here ✌️
Acknowledgements
Skyrim is built on top of NVIDIA's earth2mip and ECMWF's ai-models. Definitely check them out!
Other Useful Resources
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file skyrim-0.0.2.tar.gz
.
File metadata
- Download URL: skyrim-0.0.2.tar.gz
- Upload date:
- Size: 4.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53d1a19b9ddd6a1aef69812b092d392fc09cd735a2220ded245d46a8735cae35 |
|
MD5 | be0c955a31e4bfee6e2188ac8ffcf75d |
|
BLAKE2b-256 | 61aab5797d4e997fae523b098018f39bfd6bb64f6937dc9b0c96b760ac773c8f |
File details
Details for the file Skyrim-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: Skyrim-0.0.2-py3-none-any.whl
- Upload date:
- Size: 43.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6f73b8ab565987d11d8ef178f51b171a7dd8aab4a6b1e1f19e3f117a310bdd1 |
|
MD5 | a4c10c73b09581d40b84fc27e297673a |
|
BLAKE2b-256 | a0eae6476674d9d6d4f00b0baeb31fd41d5696ac3dfcec45538b5f59b1c3663d |