ilessio-aiflowlab commited on
Commit
cebf738
·
verified ·
1 Parent(s): 820e98e

Upload anima_module.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. anima_module.yaml +59 -0
anima_module.yaml ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "1.0"
2
+
3
+ module:
4
+ name: hermes
5
+ version: "0.1.0"
6
+ display_name: "HERMES — Foundation Model Navigation with Behavior Trees"
7
+ description: "Foundation model integration with ROS2 behavior trees for semantic-aware robot navigation"
8
+ category: navigation.path_planning
9
+ license: Apache-2.0
10
+ paper: "Foundation Models + Behavior Trees for ROS2 Navigation"
11
+
12
+ capabilities:
13
+ provides:
14
+ - type: navigation
15
+ subtype: semantic_aware
16
+ - type: behavior_planning
17
+ subtype: foundation_model_guided
18
+
19
+ interface:
20
+ inputs:
21
+ - name: rgb_image
22
+ ros2_type: sensor_msgs/msg/Image
23
+ - name: goal
24
+ ros2_type: geometry_msgs/msg/PoseStamped
25
+ outputs:
26
+ - name: cmd_vel
27
+ ros2_type: geometry_msgs/msg/Twist
28
+ - name: nav_status
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: hermes-base
42
+ backend: onnxruntime_cuda
43
+ fps: 10
44
+ latency_p50_ms: 80
45
+
46
+ safety:
47
+ failure_mode: safe_stop
48
+ timeout_ms: 1000
49
+ health_topic: /anima/hermes/health
50
+
51
+ composability:
52
+ pairs_well_with:
53
+ - perception.slam
54
+ - perception.scene_understanding
55
+ conflicts_with: []
56
+
57
+ container:
58
+ image: ghcr.io/robotflow-labs/anima-hermes:0.1.0
59
+ port: 8093