ryderdamen / vehicle_recognizer

Car Recognition with Deep Learning

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vehicle Recognizer

A containerized CPU vehicle-recognition service implemented from foamliu/Car-Recognition.

Installation

To install, clone the repository and run the installation command.

git clone https://github.com/ryderdamen/vehicle_recognizer/
cd vehicle_recognizer
make download_models
make install

Running

To run, use the following command:

make run

Once the server has started, upload an image to it:

curl -X POST 0.0.0.0:8000/classify/ -F 'file=@test/jeep.jpg' -i
{
  "label": "Jeep Wrangler SUV 2012", 
  "probability": "0.8388"
}

About

Car Recognition with Deep Learning


Languages

Language:Python 95.6%Language:Shell 2.2%Language:Makefile 1.5%Language:Dockerfile 0.8%