38 lines
947 B
Markdown
Raw Permalink Normal View History

2025-01-27 22:38:23 +01:00
# Cats and Dogs Classification
2025-01-28 11:50:18 +01:00
This project is meant as a way to gradually bring improvements on the bayesian network until it is as good as I can make it. All papers that I use will be featured in the README. There will also be a report on how the project went and what I learned and improved on.
2025-01-27 22:38:23 +01:00
2025-01-28 11:50:18 +01:00
## Table of Contents
2025-01-27 22:38:23 +01:00
2025-01-28 11:50:18 +01:00
* [Objectives 🎯](#objectives)
2025-01-29 10:28:11 +01:00
* [Requirements 📋](#requirements)
2025-01-28 11:50:18 +01:00
* [Running the project 🚀](#running-the-project)
* [Development 🔨](#development)
* [Citations 📝](#citations)
2025-01-27 22:38:23 +01:00
2025-01-28 11:50:18 +01:00
## Objectives 🎯
- [ ] Pretrain some models
- [ ] Generate some graphs to visualize the data
- [ ] Make a CLI
2025-01-29 10:28:11 +01:00
## Requirements 📋
To run the projet you need the following requirements:
- Python 3.12
- venv
2025-01-28 11:50:18 +01:00
## Running the project 🚀
2025-01-27 22:38:23 +01:00
```sh
python -m venv .venv
source .venv/bin/activate
pip install requirements.txt
2025-01-28 11:50:18 +01:00
python train.py # If you want to train your own model
python main.py
2025-01-28 11:50:18 +01:00
```
## Development 🔨
## Citations 📝