The cover image is the author’s operation chart, and I only have text prediction results in ubuntu.

Detection Using A Pre-Trained Model

Use trained models to detect objects

Run the command to download and compile the model

git clone https://github.com/pjreddie/darknet
cd darknet
make
Copy the code

Run the model to download the pre-training weights

wget https://pjreddie.com/media/files/yolo.weights
Copy the code

Run the following command to test the model

./darknet detect cfg/yolo.cfg yolo.weights data/dog.jpg
Copy the code

Final result Screenshot

The original English

https://pjreddie.com/darknet/yolo/

The original tutorial

http://www.tensorflownews.com/2017/09/21/yolo-real-time-object-detection/

More machine learning tutorials

http://www.tensorflownews.com