ilessio-aiflowlab commited on
Commit
daadb98
·
verified ·
1 Parent(s): d0e160b

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: haptos
5
+ version: "0.1.0"
6
+ display_name: "HAPTOS — General Tactile Representation Learning"
7
+ description: "Foundation model for tactile sensing and contact-rich manipulation with learned tactile representations"
8
+ category: manipulation.tactile
9
+ license: Apache-2.0
10
+ paper: "General Tactile Representation Learning"
11
+
12
+ capabilities:
13
+ provides:
14
+ - type: tactile_sensing
15
+ subtype: representation_learning
16
+ - type: contact_estimation
17
+ subtype: force_torque
18
+
19
+ interface:
20
+ inputs:
21
+ - name: tactile_data
22
+ ros2_type: std_msgs/msg/Float32MultiArray
23
+ - name: image
24
+ ros2_type: sensor_msgs/msg/Image
25
+ outputs:
26
+ - name: tactile_features
27
+ ros2_type: std_msgs/msg/Float32MultiArray
28
+ - name: contact_state
29
+ ros2_type: std_msgs/msg/String
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: haptos-base
42
+ backend: onnxruntime_cuda
43
+ fps: 30
44
+ latency_p50_ms: 20
45
+
46
+ safety:
47
+ failure_mode: returns_empty
48
+ timeout_ms: 200
49
+ health_topic: /anima/haptos/health
50
+
51
+ composability:
52
+ pairs_well_with:
53
+ - manipulation.grasping
54
+ - manipulation.vla
55
+ conflicts_with: []
56
+
57
+ container:
58
+ image: ghcr.io/robotflow-labs/anima-haptos:0.1.0
59
+ port: 8090