ilessio-aiflowlab commited on
Commit
894f68b
·
verified ·
1 Parent(s): 1426769

Upload anima_module.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. anima_module.yaml +28 -29
anima_module.yaml CHANGED
@@ -2,58 +2,57 @@ schema_version: "1.0"
2
 
3
  module:
4
  name: heimdall
5
- version: "0.1.0"
6
- display_name: "HEIMDALL — PROFusion Dense Reconstruction SLAM"
7
- description: "Robust dense 3D reconstruction via camera pose regression and optimization using PROFusion"
8
- category: perception.slam
 
 
 
9
  license: Apache-2.0
10
- paper: "PROFusion: Robust and Accurate Dense Reconstruction via Camera Pose Regression and Optimization (Sep 2025)"
11
 
12
  capabilities:
13
  provides:
14
- - type: slam
15
- subtype: dense_reconstruction
16
- - type: pose_estimation
17
- subtype: camera_regression
18
 
19
  interface:
20
  inputs:
21
- - name: rgb_image
22
- ros2_type: sensor_msgs/msg/Image
23
- - name: depth_image
24
- ros2_type: sensor_msgs/msg/Image
25
  outputs:
26
- - name: pose
27
- ros2_type: geometry_msgs/msg/PoseStamped
28
- - name: dense_map
29
- ros2_type: sensor_msgs/msg/PointCloud2
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: heimdall-base
42
- backend: onnxruntime_cuda
43
- fps: 10
44
- latency_p50_ms: 80
45
 
46
  safety:
47
  failure_mode: returns_empty
48
- timeout_ms: 1000
49
  health_topic: /anima/heimdall/health
50
 
51
  composability:
52
- pairs_well_with:
53
- - perception.depth_estimation
54
- - perception.point_cloud
55
  conflicts_with: []
56
 
57
  container:
58
- image: ghcr.io/robotflow-labs/anima-heimdall:0.1.0
59
- port: 8091
 
2
 
3
  module:
4
  name: heimdall
5
+ version: 1.0.0
6
+ display_name: "HEIMDALL — AUDRON Acoustic Drone Detection and Classification"
7
+ description: >
8
+ Deep learning framework with fused acoustic signatures for drone type
9
+ recognition. Binary detection and multi-class drone classification from
10
+ MEMS microphone array audio streams.
11
+ category: perception.acoustic
12
  license: Apache-2.0
13
+ paper: "https://arxiv.org/abs/2512.20407"
14
 
15
  capabilities:
16
  provides:
17
+ - type: detection
18
+ subtype: acoustic_drone
19
+ - type: classification
20
+ subtype: drone_type
21
 
22
  interface:
23
  inputs:
24
+ - name: audio_stream
25
+ ros2_type: std_msgs/msg/Float32MultiArray
 
 
26
  outputs:
27
+ - name: detection_event
28
+ ros2_type: std_msgs/msg/String
29
+ - name: health_status
30
+ ros2_type: std_msgs/msg/String
31
 
32
  hardware:
33
  platforms:
34
  - name: linux_x86
35
  backends: [onnxruntime_cuda, onnxruntime_cpu]
36
+ - name: linux_arm64
37
+ backends: [onnxruntime_cpu]
38
 
39
  performance:
40
  profiles:
41
  - platform: linux_x86
42
+ model: heimdall-audron
43
+ backend: onnxruntime_cpu
44
+ fps: 48
45
+ latency_p50_ms: 100
46
 
47
  safety:
48
  failure_mode: returns_empty
49
+ timeout_ms: 100
50
  health_topic: /anima/heimdall/health
51
 
52
  composability:
53
+ pairs_well_with: []
 
 
54
  conflicts_with: []
55
 
56
  container:
57
+ image: ghcr.io/robotflow-labs/anima-heimdall:1.0.0
58
+ port: 8080