Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 455 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 455 Bytes

Jetson Inference Native

docker run --name jetson-inference-native -d \
  -e TZ=Asia/Shanghai \
  -p 5000:5000 \
  --runtime nvidia \
  hikariai/jetson-inference-native
curl -X POST -H "Content-Type: application/json" \
     -d '{"network": "resnet-18", "url": "https://cdn.download.ams.birds.cornell.edu/api/v1/asset/171633971"}' \
     http://localhost:5000/inference
docker logs jetson-inference-native --follow