Royalvice commited on
Commit
14b0899
·
verified ·
1 Parent(s): 5f8355f

Update EVA01 model card

Browse files
Files changed (1) hide show
  1. README.md +176 -1
README.md CHANGED
@@ -1,3 +1,178 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # EVA01-2B-Instruct-LoRA
2
 
3
- LoRA adapter plus EVA01 mesh UND assets. Base model: Qwen/Qwen3-VL-2B-Instruct.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers
4
+ pipeline_tag: text-generation
5
+ base_model: Qwen/Qwen3-VL-2B-Instruct
6
+ tags:
7
+ - eva01
8
+ - 3d
9
+ - mesh
10
+ - multimodal
11
+ - qwen3-vl
12
+ - pointllm-200
13
+ - safetensors
14
+ - lora
15
+ - peft
16
+ ---
17
+
18
  # EVA01-2B-Instruct-LoRA
19
 
20
+ <p align="center">
21
+ <img src="https://raw.githubusercontent.com/SeeleAI/OpenEVA/main/EVA01/assets/teaser.png" alt="EVA01 teaser" width="92%">
22
+ </p>
23
+
24
+ EVA01 is a unified native 3D framework for mesh understanding, shape generation, and context-aware editing. It integrates 3D meshes as a native modality through a Mixture-of-Transformers architecture with an Understanding Expert, a structurally mirrored Generation Expert, shared global self-attention, and hard modality routing.
25
+
26
+ `EVA01-2B-Instruct-LoRA` is the UND-side LoRA adapter release. It is intended for native 3D mesh understanding and open-ended question answering over `.glb` mesh input.
27
+
28
+ ## Model Details
29
+
30
+ | Item | Description |
31
+ | --- | --- |
32
+ | Model | `SEELE-AI/EVA01-2B-Instruct-LoRA` |
33
+ | Release type | UND-side LoRA adapter |
34
+ | Base model | [`Qwen/Qwen3-VL-2B-Instruct`](https://huggingface.co/Qwen/Qwen3-VL-2B-Instruct) |
35
+ | 3D input | `.glb` mesh input through the EVA01 mesh UND processor |
36
+ | Components | PEFT adapter, EVA01 mesh UND encoder, connector, tokenizer, processor, and config files |
37
+ | Training recipe | Alignment followed by instruction tuning |
38
+ | Code | [SeeleAI/OpenEVA](https://github.com/SeeleAI/OpenEVA) |
39
+ | Project page | [EVA01](https://www.seeles.ai/research/pages/EVA01) |
40
+ | Paper | [arXiv:2605.16745](https://arxiv.org/abs/2605.16745) |
41
+
42
+ This repo does not include the full Qwen3-VL base weights. The EVA01 loader resolves the base model from the LoRA config by default. For offline or local deployment, pass a local base path through `base_model_name_or_path`.
43
+
44
+ ## Installation
45
+
46
+ EVA01 requires the OpenEVA code package in addition to the checkpoint files.
47
+
48
+ ```bash
49
+ git clone https://github.com/SeeleAI/OpenEVA.git
50
+ cd OpenEVA/EVA01
51
+ bash install.sh
52
+ source .venv/bin/activate
53
+ ```
54
+
55
+ If a different CUDA wheel index is required, set `TORCH_INDEX_URL` before running the install script.
56
+
57
+ ```bash
58
+ TORCH_INDEX_URL=https://download.pytorch.org/whl/cu121 bash install.sh
59
+ ```
60
+
61
+ ## Quick Inference
62
+
63
+ CLI:
64
+
65
+ ```bash
66
+ python infer.py \
67
+ --checkpoint SEELE-AI/EVA01-2B-Instruct-LoRA \
68
+ --mesh assets/examples/construction_backhoe.glb \
69
+ --question "Describe this 3D object in detail."
70
+ ```
71
+
72
+ Python API:
73
+
74
+ ```python
75
+ import torch
76
+ from eva01 import EVA01ForConditionalGeneration, EVA01Processor
77
+
78
+ model = EVA01ForConditionalGeneration.from_pretrained(
79
+ "SEELE-AI/EVA01-2B-Instruct-LoRA",
80
+ torch_dtype=torch.bfloat16,
81
+ device_map="auto",
82
+ )
83
+ processor = EVA01Processor.from_pretrained("SEELE-AI/EVA01-2B-Instruct-LoRA")
84
+
85
+ messages = [{
86
+ "role": "user",
87
+ "content": [
88
+ {"type": "mesh", "mesh": "assets/examples/construction_backhoe.glb"},
89
+ {"type": "text", "text": "Describe this 3D object in detail."},
90
+ ],
91
+ }]
92
+
93
+ inputs = processor.apply_chat_template(
94
+ messages,
95
+ tokenize=True,
96
+ add_generation_prompt=True,
97
+ return_dict=True,
98
+ return_tensors="pt",
99
+ ).to(model.device)
100
+
101
+ output_ids = model.generate(**inputs, max_new_tokens=128, do_sample=False)
102
+ text = processor.batch_decode(
103
+ output_ids[:, inputs.input_ids.shape[1]:],
104
+ skip_special_tokens=True,
105
+ clean_up_tokenization_spaces=False,
106
+ )[0]
107
+ print(text)
108
+ ```
109
+
110
+ Local base override:
111
+
112
+ ```python
113
+ model = EVA01ForConditionalGeneration.from_pretrained(
114
+ "SEELE-AI/EVA01-2B-Instruct-LoRA",
115
+ base_model_name_or_path="/path/to/Qwen3-VL-2B-Instruct",
116
+ torch_dtype=torch.bfloat16,
117
+ device_map="auto",
118
+ )
119
+ ```
120
+
121
+ The public mesh token is `<|mesh_und_pad|>`. The processor returns `input_ids`, `attention_mask`, and `mesh_und_values`.
122
+
123
+ ## Gradio Chat
124
+
125
+ ```bash
126
+ python app.py --checkpoint SEELE-AI/EVA01-2B-Instruct-LoRA --host 127.0.0.1 --port 7860
127
+ ```
128
+
129
+ The OpenEVA app supports uploaded `.glb` files and includes 10 built-in TexVerse examples. The OpenEVA GitHub repository also contains a PBR-rendered example gallery.
130
+
131
+ ## PointLLM-200 Evaluation
132
+
133
+ The OpenEVA eval script downloads PointLLM-200 benchmark files staged in the Full checkpoint repo and writes results under `EVA01/outputs/pointllm200/`.
134
+
135
+ ```bash
136
+ python eval_pointllm200.py --variant lora
137
+ ```
138
+
139
+ The deterministic path computes BLEU, ROUGE, METEOR, Sentence-BERT, and SimCSE with fixed seed `20260615` and greedy generation. GPT-ref and GPT-img judge paths are available when `OPENAI_API_KEY` is set.
140
+
141
+ The PointLLM-200 benchmark source is cited as [`RunsenXu/PointLLM`](https://huggingface.co/datasets/RunsenXu/PointLLM).
142
+
143
+ ## Metrics
144
+
145
+ All metrics below are reported on PointLLM-200 with 200 samples, fixed seed `20260615`, and greedy decoding. GPT-ref and GPT-img are judge metrics and may vary with judge model and API settings.
146
+
147
+ | Model | B-1 | B-4 | R-L | METEOR | SBERT | SimCSE | GPT-ref | GPT-img |
148
+ | --- | ---: | ---: | ---: | ---: | ---: | ---: | ---: | ---: |
149
+ | PointLLM-13B | 7.873 | 0.649 | 10.519 | 13.620 | 47.539 | 48.602 | 51.735 | 49.745 |
150
+ | ShapeLLM-13B | 10.542 | 1.050 | 12.954 | 14.234 | 39.935 | 40.728 | 33.925 | 35.870 |
151
+ | ShapeLLM-Omni | 11.326 | 1.197 | 14.190 | 13.276 | 34.617 | 35.115 | 25.625 | 20.190 |
152
+ | EVA01-2B-Instruct | 6.386 | 0.589 | 9.443 | 13.505 | 50.651 | 50.767 | 59.045 | 70.335 |
153
+ | **EVA01-2B-Instruct-LoRA** | 6.372 | 0.607 | 9.455 | 13.567 | 51.194 | 51.320 | **59.560** | **71.480** |
154
+
155
+ ## Intended Use
156
+
157
+ This checkpoint is intended for research and development around 3D mesh understanding, 3D asset captioning, and mesh-grounded question answering. It expects mesh input through the EVA01 processor and should be used with the OpenEVA runtime/API.
158
+
159
+ ## Limitations
160
+
161
+ - The public release focuses on the UND-side path.
162
+ - This LoRA repo does not include the full Qwen3-VL base weights.
163
+ - Model quality depends on mesh geometry, scale, topology, materials, and texture availability.
164
+ - Outputs may contain incorrect or unsupported details when the mesh is ambiguous, incomplete, or visually underspecified.
165
+ - GPT-ref and GPT-img scores are judge references and are not bitwise reproducible across judge model or API changes.
166
+
167
+ ## Citation
168
+
169
+ ```bibtex
170
+ @misc{eva01_2026,
171
+ title = {EVA01: Unified Native 3D Understanding and Generation via Mixture-of-Transformers},
172
+ author = {Zongyuan Yang and Mingjing Yi and Wanli Ma and Chenzhuo Fan and Bocheng Li and Baolin Liu and Yuke Lou and Yingde Song and Yongping Xiong and Zhengdong Guo and Shimu Wang},
173
+ year = {2026},
174
+ eprint = {2605.16745},
175
+ archivePrefix = {arXiv},
176
+ primaryClass = {cs.CV}
177
+ }
178
+ ```