AdrianLlopart commited on
Commit
82cb4bb
Β·
verified Β·
1 Parent(s): 0a95e7a

chore: publish rSkill OpenRAL/rskill-rtdetr-coco-r18 v0.1.0

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. rskill.yaml +6 -3
README.md CHANGED
@@ -140,7 +140,7 @@ The detector emits **no** `Action` chunks and has no proprioception
140
  | `kind` | `detector` (ADR-0037 perception producer) |
141
  | `embodiment_tags` | all 17 canonical embodiment tags (any robot with RGB camera) |
142
  | `runtime` / `quantization.dtype` | `onnx` / `fp32` |
143
- | `weights_uri` | `rskill://rskills/rtdetr-coco-r18` |
144
  | `latency_budget.per_chunk_ms` | `50.0` |
145
  | `detector.labels` | 80 COCO categories |
146
  | `detector.input_size` | `[640, 640]` |
 
140
  | `kind` | `detector` (ADR-0037 perception producer) |
141
  | `embodiment_tags` | all 17 canonical embodiment tags (any robot with RGB camera) |
142
  | `runtime` / `quantization.dtype` | `onnx` / `fp32` |
143
+ | `weights_uri` | `local://rskills/rtdetr-coco-r18` |
144
  | `latency_budget.per_chunk_ms` | `50.0` |
145
  | `detector.labels` | 80 COCO categories |
146
  | `detector.input_size` | `[640, 640]` |
rskill.yaml CHANGED
@@ -57,8 +57,8 @@ quantization:
57
  backend: "onnx"
58
 
59
  # RT-DETR-L exported to ONNX. References the in-tree rSkill package.
60
- # The loader resolves rskill:// to the local rskills/<id>/ directory.
61
- weights_uri: "rskill://rskills/rtdetr-coco-r18"
62
 
63
  # ── Execution semantics ─────────────────────────────────────────────────────
64
  # chunk_size is 1: the detector runs per-frame. The safety supervisor never
@@ -74,6 +74,9 @@ latency_budget:
74
  # 80 COCO labels (subset shown for readability β€” full list matches the
75
  # 0-indexed COCO category order used by the exported model).
76
  detector:
 
 
 
77
  labels:
78
  - "person"
79
  - "bicycle"
@@ -156,7 +159,7 @@ detector:
156
  - "hair drier"
157
  - "toothbrush"
158
  input_size: [640, 640]
159
- score_threshold: 0.5
160
 
161
  # ── Provenance ──────────────────────────────────────────────────────────────
162
  paper_url: "https://arxiv.org/abs/2304.08069"
 
57
  backend: "onnx"
58
 
59
  # RT-DETR-L exported to ONNX. References the in-tree rSkill package.
60
+ # The loader resolves local:// to the local rskills/<id>/ directory.
61
+ weights_uri: "local://rskills/rtdetr-coco-r18"
62
 
63
  # ── Execution semantics ─────────────────────────────────────────────────────
64
  # chunk_size is 1: the detector runs per-frame. The safety supervisor never
 
74
  # 80 COCO labels (subset shown for readability β€” full list matches the
75
  # 0-indexed COCO category order used by the exported model).
76
  detector:
77
+ # ADR-0051: always-on background producer (publishes ObjectsMetadata to
78
+ # WorldState; not the on-demand locate_in_view locator).
79
+ mode: "continuous"
80
  labels:
81
  - "person"
82
  - "bicycle"
 
159
  - "hair drier"
160
  - "toothbrush"
161
  input_size: [640, 640]
162
+ score_threshold: 0.7
163
 
164
  # ── Provenance ──────────────────────────────────────────────────────────────
165
  paper_url: "https://arxiv.org/abs/2304.08069"