There are two types of APIs:
- Health check API - Check DJL Serving health status
- Predictions API - Make predictions API call to DJL Serving
GET /ping
DJL Serving supports a ping
API that user can check health status:
curl http://localhost:8080/ping
{
"health": "healthy!"
}
POST /predictions/{model_name}
POST /predictions/{model_name}/{version}
For each loaded model, user can make REST call to run the prediction
# Load PyTorch resent18 model:
curl -X POST "http://localhost:8080/models?url=https%3A%2F%2Fresources.djl.ai%2Fdemo%2Fpytorch%2Ftraced_resnet18.zip&engine=PyTorch"
# Download an image for testing
curl -O https://resources.djl.ai/images/kitten.jpg
curl -X POST http://localhost:8080/predictions/traced_resnet18 -T kitten.jpg
or:
curl -X POST http://localhost:8080/predictions/traced_resnet18 -F "[email protected]"
The result was some JSON that told us our image likely held a tabby cat.
[
{
"className": "n02123045 tabby, tabby cat",
"probability": 0.40216901898384094
},
{
"className": "n02123159 tiger cat",
"probability": 0.29153719544410706
},
{
"className": "n02124075 Egyptian cat",
"probability": 0.27031397819519043
},
{
"className": "n02123394 Persian cat",
"probability": 0.007626921869814396
},
{
"className": "n02127052 lynx, catamount",
"probability": 0.004957360681146383
}
]