Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/piyoki/jetson-inference-native
The native solution for Jetson Inference running on the edge
https://github.com/piyoki/jetson-inference-native
cloud-native image-classification image-recognition jetson jetson-inference kubernetes nvidia-docker
Last synced: about 1 month ago
JSON representation
The native solution for Jetson Inference running on the edge
- Host: GitHub
- URL: https://github.com/piyoki/jetson-inference-native
- Owner: piyoki
- License: mit
- Created: 2021-04-09T12:14:23.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-11T10:35:41.000Z (over 3 years ago)
- Last Synced: 2024-10-14T07:36:25.938Z (3 months ago)
- Topics: cloud-native, image-classification, image-recognition, jetson, jetson-inference, kubernetes, nvidia-docker
- Language: C++
- Homepage:
- Size: 88.7 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Jetson Inference Native
```bash
docker run --name jetson-inference-native -d \
-e TZ=Asia/Shanghai \
-p 5000:5000 \
--runtime nvidia \
hikariai/jetson-inference-native
``````bash
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
``````bash
docker logs jetson-inference-native --follow
```