/HOBO-AI

Yolov3 trained for hobo detecting!

Primary LanguagePython

HOBO-AI

Yolov3 trained for hobo detecting!

HOBO1 HOBO1

How to use:

Setting up Virtual Environment [Linux or Mac]

Clone this repo with:

git clone https://github.com/suchencjusz/HOBO-AI
cd HOBO-AI/

Create Virtual (Linux/Mac) Environment:

python3 -m venv env
source env/bin/activate

Make sure that, from now on, you run all commands from within your virtual environment.

Setting up Virtual Environment [Windows]

Use the Github Desktop GUI to clone this repo to your local machine. Navigate to the TrainYourOwnYOLO project folder and open a power shell window by pressing Shift + Right Click and selecting Open PowerShell window here in the drop-down menu.

Create Virtual (Windows) Environment:

py -m venv env
.\env\Scripts\activate

Probably you will have to enable execution of PowerShell scripts (admin right required)

Set-ExecutionPolicy unrestricted

PowerShell Make sure that, from now on, you run all commands from within your virtual environment.

Install Required Packages [Windows, Mac or Linux]

Install required packages (from within your virtual environment) via:

pip install -r requirements.txt

If this fails, you may have to upgrade your pip version first with pip install pip --upgrade.

Make sure you are using python 3.7.8, you can change this in env config file

home = C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64
include-system-site-packages = false
version = 3.7.8

(of course you need to install this version https://www.python.org/downloads/release/python-378/)