Thunderstorm nowcast based on radar data (for agrometeorology)
To launch it, first install the package then run deepaas:
git clone https://github.com/MicroStep-MIS/thunderstorm-nowcast-microstep
cd thunderstorm-nowcast-microstep
pip install -e .
deepaas-run --listen-ip 0.0.0.0
├── LICENSE
├── README.md <- The top-level README for developers using this project.
├── data
│ └── raw <- The original, immutable data dump.
│
├── docs <- A default Sphinx project; see sphinx-doc.org for details
│
├── models <- Trained and serialized models, model predictions, or model summaries
│
├── notebooks <- Jupyter notebooks. Naming convention is a number (for ordering),
│ the creator's initials (if many user development),
│ and a short `_` delimited description, e.g.
│ `1.0-jqp-initial_data_exploration.ipynb`.
│
├── references <- Data dictionaries, manuals, and all other explanatory materials.
│
├── reports <- Generated analysis as HTML, PDF, LaTeX, etc.
│ └── figures <- Generated graphics and figures to be used in reporting
│
├── requirements.txt <- The requirements file for reproducing the analysis environment, e.g.
│ generated with `pip freeze > requirements.txt`
├── test-requirements.txt <- The requirements file for the test environment
│
├── setup.py <- makes project pip installable (pip install -e .) so ai4eosc_thunder_nowcast_ml can be imported
├── ai4eosc_thunder_nowcast_ml <- Source code for use in this project.
│ ├── __init__.py <- Makes ai4eosc_thunder_nowcast_ml a Python module
│ │
│ ├── dataset <- Scripts to download or generate data
│ │ └── make_dataset.py
│ │
│ ├── features <- Scripts to turn raw data into features for modeling
│ │ └── build_features.py
│ │
│ ├── models <- Scripts to train models and make predictions
│ │ └── api.py <- Main script for the integration with DEEP API
│ │
│ ├── tests <- Scripts to perfrom code testing
│ │
│ └── visualization <- Scripts to create exploratory and results oriented visualizations
│ └── visualize.py
│
└── tox.ini <- tox file with settings for running tox; see tox.testrun.org