Classify in which direction the Xray was taken
xray_classifier/
├── LICENSE
├── README.md
├── Makefile # Makefile with commands like `make data` or `make train`
├── configs # Config files (models and training hyperparameters)
│ └── model1.yaml
│
├── data
│ ├── processed # The final, canonical data sets for modeling.
│ └── raw # The original, immutable data dump.
│
├── docs # Project documentation.
│
├── models # Trained and serialized models.
│
├── notebooks # Jupyter notebooks.
│
├── 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.
└── src # Source code for use in this project.
├── __init__.py # Makes src a Python module.
│
├── data # Data engineering scripts.
│ ├── ImageClassififcationDataset.py
│ ├── preprocessing.py
│
├── models # ML model engineering.
│ ├── model.py
│ ├── predict.py
│ └── train.py
Project based on the cookiecutter MLOps project template that is originally based on cookiecutter data science project template. #cookiecuttermlops #cookiecutterdatascience