Mikhail Pryakhin commited on
Commit ·
efaedac
1
Parent(s): 3b58c02
Add benchmarks.yaml and model_type; use chipset alias
Browse files- README.md +3 -1
- benchmarks.yaml +39 -0
README.md
CHANGED
|
@@ -6,11 +6,13 @@ tags:
|
|
| 6 |
- robotics
|
| 7 |
- physicalai
|
| 8 |
- physical-ai
|
| 9 |
-
- "chipset:
|
| 10 |
license: apache-2.0
|
| 11 |
title: "Action Chunking Transformer"
|
| 12 |
subtitle: "Baseline imitation-learning policy"
|
| 13 |
category: "Physical AI"
|
|
|
|
|
|
|
| 14 |
primary_type: "Vision Language Action"
|
| 15 |
secondary_types:
|
| 16 |
- Robotics
|
|
|
|
| 6 |
- robotics
|
| 7 |
- physicalai
|
| 8 |
- physical-ai
|
| 9 |
+
- "chipset:ptl"
|
| 10 |
license: apache-2.0
|
| 11 |
title: "Action Chunking Transformer"
|
| 12 |
subtitle: "Baseline imitation-learning policy"
|
| 13 |
category: "Physical AI"
|
| 14 |
+
model_type:
|
| 15 |
+
- "Imitation Learning"
|
| 16 |
primary_type: "Vision Language Action"
|
| 17 |
secondary_types:
|
| 18 |
- Robotics
|
benchmarks.yaml
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: "1.0"
|
| 2 |
+
|
| 3 |
+
benchmarks:
|
| 4 |
+
- name: OpenVINO inference
|
| 5 |
+
task: pick_and_place
|
| 6 |
+
hardware: nvl
|
| 7 |
+
metrics:
|
| 8 |
+
- name: inference_latency
|
| 9 |
+
value: 21.0
|
| 10 |
+
unit: ms
|
| 11 |
+
higher_is_better: false
|
| 12 |
+
context:
|
| 13 |
+
precision: FP16
|
| 14 |
+
runtime: OpenVINO
|
| 15 |
+
batch_size: 1
|
| 16 |
+
- name: OpenVINO inference
|
| 17 |
+
task: pick_and_place
|
| 18 |
+
hardware: ptl
|
| 19 |
+
metrics:
|
| 20 |
+
- name: inference_latency
|
| 21 |
+
value: 29.2
|
| 22 |
+
unit: ms
|
| 23 |
+
higher_is_better: false
|
| 24 |
+
context:
|
| 25 |
+
precision: FP16
|
| 26 |
+
runtime: OpenVINO
|
| 27 |
+
batch_size: 1
|
| 28 |
+
- name: OpenVINO inference
|
| 29 |
+
task: pick_and_place
|
| 30 |
+
hardware: wcl
|
| 31 |
+
metrics:
|
| 32 |
+
- name: inference_latency
|
| 33 |
+
value: 43.8
|
| 34 |
+
unit: ms
|
| 35 |
+
higher_is_better: false
|
| 36 |
+
context:
|
| 37 |
+
precision: FP16
|
| 38 |
+
runtime: OpenVINO
|
| 39 |
+
batch_size: 1
|