--- license: cc task_categories: - time-series-forecasting language: - en pretty_name: WEA size_categories: - 10M> {'time': '1980-01-01T00:00:00', 'z500': 51901.9375, 't850': 265.2726745605469, ..., 'v10_SE': 0.07839111983776093} ``` Alternatively, you can also define your own train/val/test split ```python from datasets import load_dataset london_data = load_dataset( "ClaudiaShu/wea_mts", name="london_2016", split={"train": "train[:80%]", "validation": "train[80%:90%]", "test": "train[90%:]"} ) # Access different splits train_data = london_data["train"] val_data = london_data["validation"] test_data = london_data["test"] ``` **TODO**: - [ ] The current dataset provides only basic train/val/test splits. In our experiments (see [our repository](https://github.com/ClaudiaShu/Sonnet)), training inputs begin earlier to ensure full coverage of the target forecasting horizon over the training period. - [ ] Additionally, while we use t850 as the target variable in the paper, it is not explicitly defined here. **Citation**: If you find these datasets useful for your research, please consider citing the associated paper: ``` @article{shu2025sonnet, author = {Yuxuan Shu and Vasileios Lampos}, title = {{Sonnet: Spectral Operator Neural Network for Multivariable Time Series Forecasting}}, journal = {arXiv preprint arXiv:2505.15312}, year = {2025} } ``` Alternatively, we also have a paper on multivariable time series forecasting for ILI rate. You can check it out [here](https://openreview.net/pdf?id=M62P7iOT7d) and code [here](https://github.com/ClaudiaShu/DeformTime). Please also consider citing it if you find it helpful: ``` @article{shu2025deformtime, author = {Yuxuan Shu and Vasileios Lampos}, title = {{\textsc{DeformTime}: Capturing Variable Dependencies with Deformable Attention for Time Series Forecasting}}, journal = {Transactions on Machine Learning Research}, issn = {2835-8856}, year = {2025}, url = {https://openreview.net/forum?id=M62P7iOT7d}, } ```