JeasLee commited on
Commit
1daa351
·
verified ·
1 Parent(s): 0802066

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +79 -0
README.md ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model:
4
+ - Qwen/Qwen2.5-VL-7B-Instruct
5
+ tags:
6
+ - robotics
7
+ - vision-language-action-model
8
+ - vision-language-model
9
+ library_name: transformers
10
+
11
+ # Collection Metadata (Referencing InternRobotics/VLN-PE style)
12
+ repo: InternRobotics/RoboInter-VLM
13
+ type: "checkpoint-collection"
14
+ description: "RoboInterVLM flagship checkpoint (Qwen2.5-VL-7B) fine-tuned on RoboInter-VQA."
15
+ checkpoints:
16
+ - name: RoboInter-VLM
17
+ notes: "Flagship Qwen2.5-VL-7B backbone"
18
+ ---
19
+ # RoboInter-VLM: Vision-Language Model for RoboInter Manipulation Suite
20
+
21
+ **This is the flagship model of the RoboInter-VLM series**, based on [Qwen2.5-VL-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct). It delivers the strongest performance among the Qwen2.5-VL variants and is the **recommended default checkpoint** for general use.
22
+
23
+ Developed as part of the [RoboInter](https://github.com/InternRobotics/RoboInter) project. The model is fine-tuned on the [RoboInter-VQA](https://huggingface.co/datasets/InternRobotics/RoboInter-VQA) dataset for intermediate representation understanding and generation in robotic manipulation.
24
+
25
+ ## All Available Checkpoints
26
+
27
+ | Checkpoint | Base Model | Architecture | Parameters | Description | Link|
28
+ |---|---|---|---|---|---|
29
+ | **`RoboInter-VLM` (this repo)** | [Qwen2.5-VL-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct) | Qwen2.5-VL | ~7B | **Flagship model, recommended for best performance** |https://huggingface.co/InternRobotics/RoboInter-VLM|
30
+ | `RoboInter-VLM_qwenvl25_3b` | [Qwen2.5-VL-3B-Instruct](https://huggingface.co/Qwen/Qwen2.5-VL-3B-Instruct) | Qwen2.5-VL | ~3B | Lightweight model, suitable for efficient deployment | https://huggingface.co/InternRobotics/RoboInter-VLM_qwenvl25_3b|
31
+ | `RoboInter-VLM_llavaov_7B` | [LLaVA-OneVision-Qwen2-7B](https://huggingface.co/lmms-lab/llava-onevision-qwen2-7b-ov) | LLaVA-OneVision| ~7B | LLaVA-OneVision backbone with SigLIP vision encoder |https://huggingface.co/InternRobotics/RoboInter-VLM_llavaov_7B|
32
+
33
+ All checkpoints are stored in `safetensors` format with `bfloat16` precision.
34
+
35
+ ## Supported Tasks
36
+
37
+ These models are jointly trained on general VQA and three categories of our curated VQA tasks:
38
+
39
+ - **Generation**: Predicting intermediate representations such as trajectory waypoints, gripper bounding boxes, contact points/boxes, object bounding boxes (current & final), etc.
40
+ - **Understanding**: Multiple-choice visual reasoning about contact states, grasp poses, object grounding, trajectory selection, movement directions, etc.
41
+ - **Task Planning**: High-level task planning including next-step prediction, action primitive recognition, success determination, etc.
42
+
43
+ ## Usage
44
+
45
+ ### Quick Start (This Model)
46
+
47
+ ```python
48
+ from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
49
+
50
+ model_path = "InternRobotics/RoboInter-VLM"
51
+ model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
52
+ model_path, torch_dtype="auto", device_map="auto"
53
+ )
54
+ processor = AutoProcessor.from_pretrained(model_path)
55
+ ```
56
+
57
+ For detailed usage and inference examples, please refer to the [RoboInterVLM-QwenVL](https://github.com/InternRobotics/RoboInter/tree/main/RoboInterVLM/RoboInterVLM-QwenVL) codebase.
58
+
59
+ ### LLaVA-OneVision Checkpoint
60
+
61
+ For loading and inference with the LLaVA-OneVision checkpoint, please refer to the [RoboInterVLM-LLaVAOV](https://github.com/InternRobotics/RoboInter/tree/main/RoboInterVLM/RoboInterVLM-LLaVAOV) codebase, as it requires custom model classes.
62
+
63
+ ### Training & Evaluation
64
+
65
+ For full training and evaluation pipelines, please refer to:
66
+
67
+ - **Qwen2.5-VL models**: [RoboInterVLM-QwenVL](https://github.com/InternRobotics/RoboInter/tree/main/RoboInterVLM/RoboInterVLM-QwenVL)
68
+ - **LLaVA-OneVision model**: [RoboInterVLM-LLaVAOV](https://github.com/InternRobotics/RoboInter/tree/main/RoboInterVLM/RoboInterVLM-LLaVAOV)
69
+ - **VQA Dataset**: [RoboInter-VQA](https://huggingface.co/datasets/InternRobotics/RoboInter-VQA)
70
+
71
+ ## Related Resources
72
+
73
+ - **Project**: [RoboInter](https://github.com/InternRobotics/RoboInter)
74
+ - **Annotation Data**: [RoboInter-Data](https://huggingface.co/datasets/InternRobotics/RoboInter-Data)
75
+ - **VQA Dataset**: [RoboInter-VQA](https://huggingface.co/datasets/InternRobotics/RoboInter-VQA)
76
+
77
+ ## License
78
+
79
+ Please refer to the original licenses of [RoboInter](https://github.com/InternRobotics/RoboInter), [Qwen2.5-VL](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct), and [LLaVA-OneVision](https://huggingface.co/lmms-lab/llava-onevision-qwen2-7b-ov).