ilessio-aiflowlab commited on
Commit
e6c7cbf
·
verified ·
1 Parent(s): b7d8273

Upload anima_module.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. anima_module.yaml +61 -0
anima_module.yaml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "1.0"
2
+
3
+ module:
4
+ name: sleipnir
5
+ version: "0.1.0"
6
+ display_name: "SLEIPNIR — Ground-Fusion++ Robust Sensor-Fusion Ground SLAM"
7
+ description: "Robust sensor-fusion ground SLAM combining LiDAR, camera, and IMU for degraded environments"
8
+ category: perception.slam
9
+ license: Apache-2.0
10
+ paper: "Ground-Fusion++: Towards Robust Sensor-Fusion Ground SLAM (arXiv:2507.08364)"
11
+
12
+ capabilities:
13
+ provides:
14
+ - type: slam
15
+ subtype: multi_sensor_fusion
16
+ - type: robustness
17
+ subtype: degraded_environment
18
+
19
+ interface:
20
+ inputs:
21
+ - name: point_cloud
22
+ ros2_type: sensor_msgs/msg/PointCloud2
23
+ - name: image
24
+ ros2_type: sensor_msgs/msg/Image
25
+ - name: imu
26
+ ros2_type: sensor_msgs/msg/Imu
27
+ outputs:
28
+ - name: pose
29
+ ros2_type: geometry_msgs/msg/PoseStamped
30
+ - name: map
31
+ ros2_type: sensor_msgs/msg/PointCloud2
32
+
33
+ hardware:
34
+ platforms:
35
+ - name: linux_x86
36
+ backends: [onnxruntime_cuda, onnxruntime_cpu]
37
+ - name: nvidia_jetson
38
+ backends: [tensorrt, onnxruntime_cuda]
39
+
40
+ performance:
41
+ profiles:
42
+ - platform: linux_x86
43
+ model: sleipnir-base
44
+ backend: onnxruntime_cuda
45
+ fps: 15
46
+ latency_p50_ms: 50
47
+
48
+ safety:
49
+ failure_mode: returns_empty
50
+ timeout_ms: 1000
51
+ health_topic: /anima/sleipnir/health
52
+
53
+ composability:
54
+ pairs_well_with:
55
+ - perception.depth_estimation
56
+ - navigation.path_planning
57
+ conflicts_with: []
58
+
59
+ container:
60
+ image: ghcr.io/robotflow-labs/anima-sleipnir:0.1.0
61
+ port: 8149