Robotics
TensorRT
ONNX
autoware
autonomous-driving
camera
multi-view
bird-eye-view
multi-task
e2e
planning
3d-object-detection
semantic-segmentation
depth-estimation
jetson-orin
meteor
Instructions to use AutowareFoundation/meteor with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- TensorRT
How to use AutowareFoundation/meteor with TensorRT:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
model card: no concrete GPU model names
Browse files
README.md
CHANGED
|
@@ -46,7 +46,7 @@ written by Claude (Anthropic) operating autonomously with humans setting goals a
|
|
| 46 |
| Temporal memory | Present in the checkpoint, **baked out** of the export: the deployed model is single-frame |
|
| 47 |
| Sparsity | 2:4 structured sparsity on the convolutional trunk (planner branches dense) |
|
| 48 |
| Runtime | TensorRT (INT8 on Orin, fp16 elsewhere) via `deploy/runtime.py`, `deploy/orin_realtime.py` or the C++ runtime in `deploy/cpp` |
|
| 49 |
-
| Latency | AGX Orin, INT8, CUDA Graph, zero-copy input: ~70 ms median per 8-camera frame;
|
| 50 |
| Format | PyTorch checkpoint + ONNX (opset 17, no custom ops). TensorRT engines are built locally |
|
| 51 |
| License | Apache-2.0 |
|
| 52 |
|
|
@@ -102,7 +102,7 @@ hf download AutowareFoundation/meteor-demo-scenes --repo-type dataset --include
|
|
| 102 |
git clone https://github.com/tier4/METEOR && cd METEOR
|
| 103 |
python3 hf/onnx_smoke_test.py --onnx ../meteor/meteor_v157c3Z.onnx --root ../demo/valday --frame 40 # -> SMOKE PASS
|
| 104 |
|
| 105 |
-
# TensorRT on a workstation (verified: TensorRT 8.6,
|
| 106 |
python3 deploy/build_engine_fp16.py ../meteor/meteor_v157c3Z.onnx out/meteor_fp16.engine 8
|
| 107 |
METEOR_TH2D=0.30 PYTHONPATH=. python3 deploy/orin_realtime.py --engine out/meteor_fp16.engine \
|
| 108 |
--root ../demo/valday --out out/demo.mp4
|
|
|
|
| 46 |
| Temporal memory | Present in the checkpoint, **baked out** of the export: the deployed model is single-frame |
|
| 47 |
| Sparsity | 2:4 structured sparsity on the convolutional trunk (planner branches dense) |
|
| 48 |
| Runtime | TensorRT (INT8 on Orin, fp16 elsewhere) via `deploy/runtime.py`, `deploy/orin_realtime.py` or the C++ runtime in `deploy/cpp` |
|
| 49 |
+
| Latency | AGX Orin, INT8, CUDA Graph, zero-copy input: ~70 ms median per 8-camera frame; workstation fp16 (TensorRT 8.6, plugin-free, data-center GPU): ~30 ms |
|
| 50 |
| Format | PyTorch checkpoint + ONNX (opset 17, no custom ops). TensorRT engines are built locally |
|
| 51 |
| License | Apache-2.0 |
|
| 52 |
|
|
|
|
| 102 |
git clone https://github.com/tier4/METEOR && cd METEOR
|
| 103 |
python3 hf/onnx_smoke_test.py --onnx ../meteor/meteor_v157c3Z.onnx --root ../demo/valday --frame 40 # -> SMOKE PASS
|
| 104 |
|
| 105 |
+
# TensorRT on a workstation (verified: TensorRT 8.6, data-center GPU, ~10 min build, 194 MB plan)
|
| 106 |
python3 deploy/build_engine_fp16.py ../meteor/meteor_v157c3Z.onnx out/meteor_fp16.engine 8
|
| 107 |
METEOR_TH2D=0.30 PYTHONPATH=. python3 deploy/orin_realtime.py --engine out/meteor_fp16.engine \
|
| 108 |
--root ../demo/valday --out out/demo.mp4
|