Inference

Inference engine provides an easy to use UI to use your trained model on new data.

5.1 Inference Engine

When you upload the image the engine will automatically predict and visualize the output.

5.2 Inference Result

You can also access the inference API using the deployment toolkit. For example, with this example you can perform inference using tools such as CURL.

$  curl -X POST \
   -F "image=@/Users/test.jpg" \
   http://localhost:8000/api/infer

Last updated