Views
No views yet
sensenova/SenseNova-SI-1.3-InternVL3-8B on the MindCube train split (10,000 examples), merged back into the base weights for easy deployment.| Bucket | Base (zero-shot) | This checkpoint |
|---|---|---|
| Overall | 85.52% | 93.62% |
| among (600) | 92.33% | 94.50% |
| around (250) | 84.00% | 92.80% |
| rotation (200) | 67.00% | 92.00% |
| linear | 84.00% | 92.80% |
| perpendicular | 86.00% | 93.87% |
sensenova/SenseNova-SI-1.3-InternVL3-8B (InternVL3-8B with Qwen2.5-7B backbone)1import torch
2from transformers import AutoModel, AutoTokenizer
3
4repo = "gdgc-mindcube/SenseNova-SI-InternVL3-8B-mindcube-lora-r16-e1"
5tokenizer = AutoTokenizer.from_pretrained(repo, trust_remote_code=True, use_fast=False)
6model = AutoModel.from_pretrained(
7 repo, torch_dtype=torch.bfloat16, trust_remote_code=True
8).eval().cuda()
9
10# Use the InternVL3 chat format: 'Image-1: <image>\nImage-2: <image>\n{question}'
11# See base model card for end-to-end multi-image example.