Views
No views yet
| Parameter | Value |
|---|---|
| Base model | nvidia/Cosmos-Reason2-2B (Qwen3-VL-2B) |
| Tasks | Action + Justification + Sensibility (multi-task) |
| Train samples | 4959 (1653 per task x 3) |
| Epochs | 3 |
| Global batch | 64 (8 replicas x 8 per replica) |
| Learning rate | 1e-5 (cosine decay, 3% warmup) |
| Video input | video_prev.mp4, 8 frames |
| Hardware | 8x A100-SXM4-80GB |
| Best checkpoint | step_150 / 231 total steps |
| Model | Action | Justification | Both | S-IoU | Parse(A/J/S) |
|---|---|---|---|---|---|
| Zero-shot | 58.5% | 81.5% | 51.0% | 0.516 | -/-/- |
| v2 best | 82.0% | 84.0% | 71.5% | 0.0%* | 100/100/0% |
v3 step_150 | 79.5% | 96.5% | 77.0% | 0.630 | 100/100/100% |
1from transformers import AutoProcessor, Qwen3VLForConditionalGeneration
2
3model = Qwen3VLForConditionalGeneration.from_pretrained(
4 "robertzty/EgoNormia-Cosmos-Reason2-2B-v3",
5 torch_dtype="bfloat16",
6 device_map="auto",
7)
8processor = AutoProcessor.from_pretrained("robertzty/EgoNormia-Cosmos-Reason2-2B-v3")