Samples based on GluonCV, from where I want to elaborate more.
# clone the repo
git clone https://github.com/luiscardozo/gluoncv-samples
cd gluoncv-samples
# create the Virtual Environment
python3 -m venv env
source env/bin/activate
# install the requirements
pip install -r requirements.txt
For now, the samples are the same of the website. To run them, simply execute python file (inside the virtualenv).
For example, running python gluoncv_samples/faster_rcnn.py
will download biking.jpg and then show the classes it have found.