File size: 3,332 Bytes
eea471e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | ---
license: other
library_name: numpy
tags:
- robotics
- embodied-ai
- multimodal
- ropedia
- xperience-10m
- baseline
- linear-model
- retrieval
metrics:
- accuracy
- f1
- mean-reciprocal-rank
- mean-squared-error
model-index:
- name: Ropedia Minimal Task Baselines
results:
- task:
type: robotics
name: Cross-modal retrieval
dataset:
type: ropedia-ai/xperience-10m-sample
name: Xperience-10M public sample episode
metrics:
- type: top_5_accuracy
value: 0.3764
name: top-5 retrieval accuracy
- type: mrr
value: 0.2634
name: mean reciprocal rank
- task:
type: robotics
name: Transition detection
dataset:
type: ropedia-ai/xperience-10m-sample
name: Xperience-10M public sample episode
metrics:
- type: f1
value: 0.6552
name: macro-F1
---
# Ropedia Minimal Task Baselines
This repo stores the minimal baseline weights and metrics for the 12-task Ropedia episode suite.
These are intentionally small, transparent baselines:
- z-score + linear softmax classifiers,
- dual ridge regression/projection heads,
- sigmoid multi-label logistic regression,
- cosine ranking for retrieval tasks.
They are not deep robot policies or foundation models. Their purpose is to make every input/output contract auditable before scaling to many episodes.
## Included
- `artifacts/**/model.npz`: minimal baseline weights, scalers, and labels
- `artifacts/**/metrics.json`: committed metrics
- `artifacts/**/feature_manifest.json`: feature block boundaries where relevant
- `scripts/*.py`: training and visualization scripts
- `notes/*.md`: interpretation and reproducibility notes
The companion artifact dataset repo stores CSV/JSON predictions and dashboard assets:
https://huggingface.co/datasets/cy0307/ropedia-episode-task-suite-artifacts
The public visual dashboard is here:
https://huggingface.co/spaces/cy0307/ropedia-episode-task-suite
## Minimal Architecture

## Metrics Snapshot
| Task | Minimal head | Main metric |
| --- | --- | ---: |
| `timeline_action` | linear softmax | 0.0500 macro-F1 |
| `timeline_subtask` | linear softmax | 0.0495 macro-F1 |
| `transition_detection` | linear softmax | 0.6552 macro-F1 |
| `next_action` | linear softmax | 0.0593 macro-F1 |
| `hand_trajectory_forecast` | ridge regression | 0.8223 MPJPE |
| `contact_prediction` | linear softmax | 1.0000 macro-F1 |
| `object_relevance` | multi-label logistic | 0.1839 micro-F1 |
| `caption_grounding` | ridge + cosine rank | 0.0172 MRR |
| `cross_modal_retrieval` | ridge + cosine rank | 0.3764 top-5 |
| `modality_reconstruction` | ridge regression | -0.0160 R2 |
| `temporal_order` | binary softmax | 0.5487 F1 |
| `misalignment_detection` | binary softmax | 0.4866 F1 |
## Data Notice
This repo does not redistribute raw Ropedia videos or raw `annotation.hdf5`. Download the original sample from Ropedia / Hugging Face and follow the dataset terms:
- https://huggingface.co/datasets/ropedia-ai/xperience-10m-sample
- https://ropedia.com/dataset
## Source
GitHub:
https://github.com/ChaoYue0307/ropedia-episode-task-suite
|