Upload anima_module.yaml with huggingface_hub
Browse files- anima_module.yaml +56 -0
anima_module.yaml
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
schema_version: "1.0"
|
| 2 |
+
|
| 3 |
+
module:
|
| 4 |
+
name: hebe
|
| 5 |
+
version: "0.1.0"
|
| 6 |
+
display_name: "HEBE — DeepHHF Heart Failure Risk Prediction from ECG"
|
| 7 |
+
description: "Deep learning framework for heart failure risk prediction from 24-hour single-lead ECG waveforms"
|
| 8 |
+
category: healthcare.monitoring
|
| 9 |
+
license: Apache-2.0
|
| 10 |
+
paper: "DeepHHF (arXiv:2601.00014)"
|
| 11 |
+
|
| 12 |
+
capabilities:
|
| 13 |
+
provides:
|
| 14 |
+
- type: risk_prediction
|
| 15 |
+
subtype: heart_failure
|
| 16 |
+
- type: ecg_analysis
|
| 17 |
+
subtype: 24h_single_lead
|
| 18 |
+
|
| 19 |
+
interface:
|
| 20 |
+
inputs:
|
| 21 |
+
- name: ecg_signal
|
| 22 |
+
ros2_type: std_msgs/msg/Float32MultiArray
|
| 23 |
+
outputs:
|
| 24 |
+
- name: risk_score
|
| 25 |
+
ros2_type: std_msgs/msg/Float32
|
| 26 |
+
- name: explanation
|
| 27 |
+
ros2_type: std_msgs/msg/String
|
| 28 |
+
|
| 29 |
+
hardware:
|
| 30 |
+
platforms:
|
| 31 |
+
- name: linux_x86
|
| 32 |
+
backends: [onnxruntime_cuda, onnxruntime_cpu]
|
| 33 |
+
- name: nvidia_jetson
|
| 34 |
+
backends: [onnxruntime_cpu]
|
| 35 |
+
|
| 36 |
+
performance:
|
| 37 |
+
profiles:
|
| 38 |
+
- platform: linux_x86
|
| 39 |
+
model: hebe-base
|
| 40 |
+
backend: onnxruntime_cuda
|
| 41 |
+
fps: 30
|
| 42 |
+
latency_p50_ms: 20
|
| 43 |
+
|
| 44 |
+
safety:
|
| 45 |
+
failure_mode: returns_empty
|
| 46 |
+
timeout_ms: 500
|
| 47 |
+
health_topic: /anima/hebe/health
|
| 48 |
+
|
| 49 |
+
composability:
|
| 50 |
+
pairs_well_with:
|
| 51 |
+
- healthcare.monitoring
|
| 52 |
+
conflicts_with: []
|
| 53 |
+
|
| 54 |
+
container:
|
| 55 |
+
image: ghcr.io/robotflow-labs/anima-hebe:0.1.0
|
| 56 |
+
port: 8126
|