This project documents my journey of learning and experimenting with YOLO object detection, starting from basic training to more advanced fine-tuning.
yolo-detection-study
├── scripts/ # Training and inference scripts
├── experiments/ # Markdown files documenting experiments
├── results/ # Output images, plots, and logs from experiments
├── configs/ # Dataset and model configuration files
├── requirements.txt # Project dependencies
└── README.md
I started with a baseline experiment to train a yolov8n model on a small vehicle dataset. This helped me understand the end-to-end training and evaluation process.
Key Results:
Note: The images above are placeholders. You should replace them with your actual experiment outputs.
-
Setup Environment:
pip install -r requirements.txt
-
Run Training: Modify the script
scripts/train.pyto point to your dataset configuration.python scripts/train.py

