Image-to-Text
Transformers
Safetensors
English
Chinese
qwen2_5_vl
image-text-to-text
mathematical-reasoning
visual-reasoning
code-generation
qwen2.5-vl
text-generation-inference
Instructions to use gogoduan/MatPlotCode with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use gogoduan/MatPlotCode with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "image-to-text" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("image-to-text", model="gogoduan/MatPlotCode")# Load model directly from transformers import AutoProcessor, AutoModelForImageTextToText processor = AutoProcessor.from_pretrained("gogoduan/MatPlotCode") model = AutoModelForImageTextToText.from_pretrained("gogoduan/MatPlotCode") - Notebooks
- Google Colab
- Kaggle
Update README.md
#2
by scikkk - opened
README.md
CHANGED
|
@@ -39,4 +39,13 @@ If you find this work helpful, please consider citing our paper:
|
|
| 39 |
journal={arXiv preprint arXiv:2510.11718},
|
| 40 |
year={2025}
|
| 41 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
```
|
|
|
|
| 39 |
journal={arXiv preprint arXiv:2510.11718},
|
| 40 |
year={2025}
|
| 41 |
}
|
| 42 |
+
@inproceedings{
|
| 43 |
+
wang2025mathcodervl,
|
| 44 |
+
title={MathCoder-{VL}: Bridging Vision and Code for Enhanced Multimodal Mathematical Reasoning},
|
| 45 |
+
author={Ke Wang and Junting Pan and Linda Wei and Aojun Zhou and Weikang Shi and Zimu Lu and Han Xiao and Yunqiao Yang and Houxing Ren and Mingjie Zhan and Hongsheng Li},
|
| 46 |
+
booktitle={The 63rd Annual Meeting of the Association for Computational Linguistics},
|
| 47 |
+
year={2025},
|
| 48 |
+
url={https://openreview.net/forum?id=nuvtX1imAb}
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
```
|