2025-01-27 22:38:23 +01:00
|
|
|
# Cats and Dogs Classification
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Quick and dirty *Bayesian Network* that classifies pictures of cats and dogs. Works okay-ish..
|
|
|
|
|
|
|
|
|
2025-01-27 23:25:41 +01:00
|
|
|
## Running the project (Using VENV)
|
2025-01-27 22:38:23 +01:00
|
|
|
|
2025-01-27 23:25:41 +01:00
|
|
|
```sh
|
|
|
|
python -m venv .venv
|
|
|
|
source .venv/bin/activate
|
|
|
|
pip install requirements.txt
|
|
|
|
|
|
|
|
python train.py
|
|
|
|
python main.py
|
|
|
|
```
|