ilessio-aiflowlab commited on
Commit
fda9bcd
·
verified ·
1 Parent(s): 83ec9e0

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: ran
5
+ version: "0.1.0"
6
+ display_name: "RAN — OpenUrban3D Open-Vocabulary 3D Segmentation"
7
+ description: "Annotation-free open-vocabulary semantic segmentation of large-scale urban point clouds"
8
+ category: perception.segmentation
9
+ license: Apache-2.0
10
+ paper: "OpenUrban3D: Annotation-Free Open-Vocabulary Semantic Segmentation of Urban Point Clouds (Sep 2025)"
11
+
12
+ capabilities:
13
+ provides:
14
+ - type: segmentation
15
+ subtype: 3d_open_vocabulary
16
+ - type: point_cloud
17
+ subtype: urban_scale
18
+
19
+ interface:
20
+ inputs:
21
+ - name: point_cloud
22
+ ros2_type: sensor_msgs/msg/PointCloud2
23
+ - name: text_query
24
+ ros2_type: std_msgs/msg/String
25
+ outputs:
26
+ - name: segmented_cloud
27
+ ros2_type: sensor_msgs/msg/PointCloud2
28
+ - name: labels
29
+ ros2_type: std_msgs/msg/String
30
+
31
+ hardware:
32
+ platforms:
33
+ - name: linux_x86
34
+ backends: [onnxruntime_cuda]
35
+ - name: nvidia_jetson
36
+ backends: [tensorrt]
37
+
38
+ performance:
39
+ profiles:
40
+ - platform: linux_x86
41
+ model: ran-base
42
+ backend: onnxruntime_cuda
43
+ fps: 3
44
+ latency_p50_ms: 300
45
+
46
+ safety:
47
+ failure_mode: returns_empty
48
+ timeout_ms: 5000
49
+ health_topic: /anima/ran/health
50
+
51
+ composability:
52
+ pairs_well_with:
53
+ - perception.point_cloud
54
+ - perception.scene_understanding
55
+ conflicts_with: []
56
+
57
+ container:
58
+ image: ghcr.io/robotflow-labs/anima-ran:0.1.0
59
+ port: 8106