Skip to content

Files

Latest commit

c68d55b · Mar 25, 2024

History

History
42 lines (38 loc) · 1.17 KB

README.md

File metadata and controls

42 lines (38 loc) · 1.17 KB

ARDI-project-template

Advanced Research Data Infrastructure project template. The template has been prepared by considering the blog post about the machine learning project structure.

Please fork this repository before starting your project.

Folder Structure

.
├── LICENSE
├── README.md
├── config.ini
├── data
│   ├── README.md
│   ├── external
│   │   └── README.md
│   ├── processed
│   │   └── README.md
│   └── raw
│       └── README.md
├── docs
│   └── README.md
├── reports
│   ├── README.md
│   ├── figures
│   └── metric_results
├── requirements.txt
├── results
│   └── README.md
└── src
    ├── __init__.py
    ├── data
    │   └── make_dataset.py
    ├── features
    │   └── build_features.py
    ├── models
    │   ├── predict_model.py
    │   └── train_model.py
    └── visualization
        └── visualize.py