Royalvice commited on
Commit
ce83b38
·
verified ·
1 Parent(s): e7eed69

Update EVA01 model card

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