ilessio-aiflowlab commited on
Commit
fbc9dad
·
verified ·
1 Parent(s): d26d114

Upload anima_module.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. anima_module.yaml +60 -0
anima_module.yaml ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: "1.0"
2
+
3
+ module:
4
+ name: ipg
5
+ version: 0.1.0
6
+ display_name: "IPG — Incremental Patch Generation for Adversarial Robustness"
7
+ description: >
8
+ Incremental adversarial patch generation for generalized adversarial training.
9
+ Red-team robustness testing tool that scores detector resilience against
10
+ physically-realizable adversarial patches.
11
+ category: security.robustness
12
+ license: Apache-2.0
13
+ paper: "https://arxiv.org/abs/2508.10946"
14
+
15
+ capabilities:
16
+ provides:
17
+ - type: security
18
+ subtype: adversarial_patch_generation
19
+ - type: testing
20
+ subtype: robustness_scoring
21
+
22
+ interface:
23
+ inputs:
24
+ - name: target_detector
25
+ ros2_type: std_msgs/msg/String
26
+ - name: test_images
27
+ ros2_type: sensor_msgs/msg/Image
28
+ outputs:
29
+ - name: red_team_report
30
+ ros2_type: std_msgs/msg/String
31
+ - name: robustness_score
32
+ ros2_type: std_msgs/msg/String
33
+
34
+ hardware:
35
+ platforms:
36
+ - name: linux_x86
37
+ backends: [onnxruntime_cuda, onnxruntime_cpu]
38
+ - name: darwin_arm64
39
+ backends: [onnxruntime_cpu, mlx]
40
+
41
+ performance:
42
+ profiles:
43
+ - platform: linux_x86
44
+ model: ipg-generator
45
+ backend: onnxruntime_cuda
46
+ fps: 5
47
+ latency_p50_ms: 200
48
+
49
+ safety:
50
+ failure_mode: returns_empty
51
+ timeout_ms: 5000
52
+ health_topic: /anima/ipg/health
53
+
54
+ composability:
55
+ pairs_well_with: []
56
+ conflicts_with: []
57
+
58
+ container:
59
+ image: ghcr.io/robotflow-labs/anima-ipg:0.1.0
60
+ port: 8080