├── .github └── workflows │ └── build-and-deploy.yml ├── .gitignore ├── Makefile ├── conf.py ├── hybrid_models.md ├── index.rst ├── make.bat ├── preprocessed_datasets.md ├── raw_datasets.md └── requirements.txt /.github/workflows/build-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/.github/workflows/build-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/Makefile -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/conf.py -------------------------------------------------------------------------------- /hybrid_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/hybrid_models.md -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/index.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/make.bat -------------------------------------------------------------------------------- /preprocessed_datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/preprocessed_datasets.md -------------------------------------------------------------------------------- /raw_datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/raw_datasets.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pangeo-data/mldata/HEAD/requirements.txt --------------------------------------------------------------------------------