Add pipeline tag and correct license
Browse filesThis PR adds the `pipeline_tag` and corrects the license to reflect the information available in the Github README. The `pipeline_tag` is set to `text-generation` because this model is a language model used for text generation tasks. The license is updated to `apache-2.0` based on the Github repository's LICENSE file.
README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
tags: []
|
|
|
|
|
4 |
---
|
5 |
|
6 |
# Introduction
|
@@ -21,7 +23,7 @@ We evaluated the model on four benchmarks: MATH, AIME, OMNI, and LiveAOPS. For M
|
|
21 |
|
22 |
# Quick Start
|
23 |
|
24 |
-
```
|
25 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
26 |
from vllm import LLM, SamplingParams
|
27 |
|
@@ -82,4 +84,4 @@ Please kindly cite our reports if they are helpful for your research.
|
|
82 |
journal={arXiv preprint arXiv:2412.09413},
|
83 |
year={2024}
|
84 |
}
|
85 |
-
```
|
|
|
1 |
---
|
2 |
library_name: transformers
|
3 |
tags: []
|
4 |
+
pipeline_tag: text-generation
|
5 |
+
license: apache-2.0
|
6 |
---
|
7 |
|
8 |
# Introduction
|
|
|
23 |
|
24 |
# Quick Start
|
25 |
|
26 |
+
```python
|
27 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
28 |
from vllm import LLM, SamplingParams
|
29 |
|
|
|
84 |
journal={arXiv preprint arXiv:2412.09413},
|
85 |
year={2024}
|
86 |
}
|
87 |
+
```
|