Safetensors
English
Chinese
ursa
Antimage01 commited on
Commit
5cd5363
·
verified ·
1 Parent(s): 4d3bf33

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -3
README.md CHANGED
@@ -1,3 +1,47 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - AI4Math/MathVista
5
+ - AI4Math/MathVerse
6
+ - MathLLMs/MathVision
7
+ - We-Math/We-Math
8
+ language:
9
+ - en
10
+ - zh
11
+ base_model:
12
+ - Qwen/Qwen2.5-Math-7B-Instruct
13
+ ---
14
+
15
+ # URSA-8B
16
+
17
+ **URSA-8B** is the first small-sized MLLM specifically focused on Chain-of-thought multimodal mathematical reasoning.
18
+
19
+ # Installation
20
+
21
+ ```python
22
+ from huggingface_hub import snapshot_download
23
+
24
+ repo_id = "URSA-MATH/URSA-RM-8B"
25
+ local_dir = YOUR_LOCAL_PATH
26
+
27
+ snapshot_path = snapshot_download(
28
+ repo_id=repo_id,
29
+ local_dir=local_dir,
30
+ revision="main",
31
+ cache_dir=None,
32
+ )
33
+ ```
34
+ # Inference
35
+ We have adapted vLLM for URSA-8B. Please refer to the [GitHub](https://github.com/URSA-MATH/URSA-MATH) repository for quick inference implementation.
36
+
37
+ # Citation
38
+
39
+ If you find our paper, model, or data helpful, please give this repo a star 🌟 and cite our article ✏️.
40
+ ```
41
+ @article{luo2025ursa,
42
+ title={URSA: Understanding and Verifying Chain-of-thought Reasoning in Multimodal Mathematics},
43
+ author={Luo, Ruilin and Zheng, Zhuofan and Wang, Yifan and Yu, Yiyao and Ni, Xinzhe and Lin, Zicheng and Zeng, Jin and Yang, Yujiu},
44
+ journal={arXiv preprint arXiv:2501.04686},
45
+ year={2025}
46
+ }
47
+ ```