Upload anima_module.yaml with huggingface_hub
Browse files- anima_module.yaml +59 -0
anima_module.yaml
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: "1.0"
|
| 2 |
+
|
| 3 |
+
module:
|
| 4 |
+
name: monad
|
| 5 |
+
version: "0.1.0"
|
| 6 |
+
display_name: "MONAD — Interactive Segmentation and Tracking"
|
| 7 |
+
description: "Interactive segmentation and tracking service for promptable object-level understanding"
|
| 8 |
+
category: perception.segmentation
|
| 9 |
+
license: MIT
|
| 10 |
+
paper: "Interactive Segmentation and Tracking"
|
| 11 |
+
|
| 12 |
+
capabilities:
|
| 13 |
+
provides:
|
| 14 |
+
- type: segmentation
|
| 15 |
+
subtype: interactive
|
| 16 |
+
- type: tracking
|
| 17 |
+
subtype: object_level
|
| 18 |
+
|
| 19 |
+
interface:
|
| 20 |
+
inputs:
|
| 21 |
+
- name: image
|
| 22 |
+
ros2_type: sensor_msgs/msg/Image
|
| 23 |
+
- name: prompt
|
| 24 |
+
ros2_type: std_msgs/msg/String
|
| 25 |
+
outputs:
|
| 26 |
+
- name: masks
|
| 27 |
+
ros2_type: sensor_msgs/msg/Image
|
| 28 |
+
- name: tracks
|
| 29 |
+
ros2_type: std_msgs/msg/String
|
| 30 |
+
|
| 31 |
+
hardware:
|
| 32 |
+
platforms:
|
| 33 |
+
- name: linux_x86
|
| 34 |
+
backends: [onnxruntime_cuda, onnxruntime_cpu]
|
| 35 |
+
- name: nvidia_jetson
|
| 36 |
+
backends: [tensorrt, onnxruntime_cuda]
|
| 37 |
+
|
| 38 |
+
performance:
|
| 39 |
+
profiles:
|
| 40 |
+
- platform: linux_x86
|
| 41 |
+
model: monad-base
|
| 42 |
+
backend: onnxruntime_cuda
|
| 43 |
+
fps: 20
|
| 44 |
+
latency_p50_ms: 40
|
| 45 |
+
|
| 46 |
+
safety:
|
| 47 |
+
failure_mode: returns_empty
|
| 48 |
+
timeout_ms: 500
|
| 49 |
+
health_topic: /anima/monad/health
|
| 50 |
+
|
| 51 |
+
composability:
|
| 52 |
+
pairs_well_with:
|
| 53 |
+
- perception.object_detection
|
| 54 |
+
- perception.tracking
|
| 55 |
+
conflicts_with: []
|
| 56 |
+
|
| 57 |
+
container:
|
| 58 |
+
image: ghcr.io/robotflow-labs/anima-monad:0.1.0
|
| 59 |
+
port: 8101
|