This repo implements YOLO-v1 from scratch, replicating the original paper's architecture as closely as possible.
It is more beginner-friendly than other implementation repositories, providing a well-guided workflow from data preparation to training and testing in tutorial_from_scratch.ipynb.
Please visit my medium for more detailed implementation
Please follow the insturction below.
git clone https://github.com/bskkimm/Simple-YOLO-v1-implementation-from-scratch-using-PyTorch-.git
conda create -n yolo-v1 python=3.10 -y
conda activate yolo-v1
pip install -r requirements.txtThen, implement YOLO-v1 step by step using tutorial_from_scratch.ipynb