krish arul meiyappan commited on
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Model Card: 5-Task Robot Classifier
|
| 2 |
+
|
| 3 |
+
## Model
|
| 4 |
+
- Name: `best_licensed.pt`
|
| 5 |
+
- Architecture: `MobileNetV3-Small` classifier
|
| 6 |
+
- Tasks: `cleaning`, `cooking`, `dishwashing`, `laundry`, `organizing`
|
| 7 |
+
|
| 8 |
+
## Intended Use
|
| 9 |
+
- Classify household task from RGB frame for non-safety-critical robot workflows.
|
| 10 |
+
|
| 11 |
+
## Out of Scope
|
| 12 |
+
- Safety-critical decisions
|
| 13 |
+
- Medical/legal/security use
|
| 14 |
+
- Tasks outside the 5-class scope
|
| 15 |
+
|
| 16 |
+
## Training Data
|
| 17 |
+
- Source: Licensed/owned dataset only
|
| 18 |
+
- License ledger: `data_licenses.csv`
|
| 19 |
+
- Dataset version: `licensed_dataset_v1` (fill exact hash/version)
|
| 20 |
+
|
| 21 |
+
## Evaluation Protocol
|
| 22 |
+
- External set: `isaac_eval/labels.csv` + frames
|
| 23 |
+
- Command:
|
| 24 |
+
```bash
|
| 25 |
+
python isaac_eval.py --checkpoint best_licensed.pt --labels-csv isaac_eval/labels.csv --images-root isaac_eval
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Reported Metrics (fill before publish)
|
| 29 |
+
- Overall accuracy: `__%`
|
| 30 |
+
- Cleaning: `__%`
|
| 31 |
+
- Cooking: `__%`
|
| 32 |
+
- Dishwashing: `__%`
|
| 33 |
+
- Laundry: `__%`
|
| 34 |
+
- Organizing: `__%`
|
| 35 |
+
|
| 36 |
+
## Known Failure Modes
|
| 37 |
+
- Visual confusion between cleaning vs organizing in cluttered environments
|
| 38 |
+
- Domain shift from training camera to deployment camera
|
| 39 |
+
- Low light / motion blur
|
| 40 |
+
|
| 41 |
+
## Mitigations
|
| 42 |
+
- Confidence thresholding
|
| 43 |
+
- Human-in-the-loop fallback
|
| 44 |
+
- Periodic retraining with licensed edge cases
|
| 45 |
+
|
| 46 |
+
## Versioning
|
| 47 |
+
- Model version: `v1.0.0`
|
| 48 |
+
- Date: `YYYY-MM-DD`
|
| 49 |
+
- Owner: `Company/Team`
|