Skip to content

simon-gardier/yolo-v5-m-implementation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

________                  ___________.__            .___            
\_____  \_______   ____   \_   _____/|__| ____    __| _/___________ 
 /   |   \_  __ \_/ __ \   |    __)  |  |/    \  / __ |/ __ \_  __ \
/    |    \  | \/\  ___/   |     \   |  |   |  \/ /_/ \  ___/|  | \/
\_______  /__|    \___  >  \___  /   |__|___|  /\____ |\___  >__|   
        \/            \/       \/            \/      \/    \/      

YOLOv5 Illustration

Implementation of YOLOv5 to detect ores in Minecraft

If you have already mined in Minecraft, you may have found yourself stressing out of fear of walking past valuable ores. With OreFinder, this time is over! OreFinder implements the one-stage object detector YOLOV5(m) v6 [1], trained on a labelled dataset of 3k Minecraft gameplay screenshots.

Project undertaken as part of the INFO8010 course given by Pr. Louppe at ULiège. Final grade : 15/20. Note : No copying (even partial) of this code within the scope of the INFO8010 course will be tolerated.

Dev environment

Conda installation

wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh # Accept everything, say 'yes'...
conda init # Run it in a new terminal
conda create -n info8010
conda activate info8010
conda info --envs #check your conda envs
which python3 # check that the python version is the one from conda (something like /home/username/miniconda3/envs/info8010/bin/python3) 
conda install ipykernel
sudo apt install graphviz

When running the notebook, make sure to select the kernel info8010.

Model links

Official Implementation : https://github.com/ultralytics/yolov5/tree/master/models

YOLOV5 explained:

Dataset

Project links

About

Implementation of the YOLO v5 (m) object detection model

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors