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.
.
├── 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