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