nikolas-rauscher / ARDI-Scholarly-QALD

Advanced Research Data Infrastructure project template
GNU General Public License v3.0
2 stars 0 forks source link

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