Update README.md
Browse files
README.md
CHANGED
|
@@ -31,7 +31,7 @@ The model outperforms [Llama3.1-70B-Instruct](https://huggingface.co/meta-llama/
|
|
| 31 |
|
| 32 |
The pipeline we used to produce the data and models is fully open-sourced!
|
| 33 |
|
| 34 |
-
- [Code](https://github.com/
|
| 35 |
- [Models](https://huggingface.co/collections/nvidia/openmath-2-66fb142317d86400783d2c7b)
|
| 36 |
- [Dataset](https://huggingface.co/datasets/nvidia/OpenMathInstruct-2)
|
| 37 |
|
|
@@ -40,9 +40,9 @@ See our [paper](https://arxiv.org/abs/2410.01560) to learn more details!
|
|
| 40 |
# How to use the models?
|
| 41 |
|
| 42 |
Our models are trained with the same "chat format" as Llama3.1-instruct models (same system/user/assistant tokens).
|
| 43 |
-
Please note that these models have
|
| 44 |
|
| 45 |
-
We recommend using [instructions in our repo](https://github.com/
|
| 46 |
an example of how to do it through transformers api:
|
| 47 |
|
| 48 |
```python
|
|
@@ -74,7 +74,7 @@ print(outputs[0]["generated_text"][-1]['content'])
|
|
| 74 |
|
| 75 |
# Reproducing our results
|
| 76 |
|
| 77 |
-
We provide [all instructions](https://github.com/
|
| 78 |
|
| 79 |
## Citation
|
| 80 |
|
|
|
|
| 31 |
|
| 32 |
The pipeline we used to produce the data and models is fully open-sourced!
|
| 33 |
|
| 34 |
+
- [Code](https://github.com/NVIDIA/NeMo-Skills)
|
| 35 |
- [Models](https://huggingface.co/collections/nvidia/openmath-2-66fb142317d86400783d2c7b)
|
| 36 |
- [Dataset](https://huggingface.co/datasets/nvidia/OpenMathInstruct-2)
|
| 37 |
|
|
|
|
| 40 |
# How to use the models?
|
| 41 |
|
| 42 |
Our models are trained with the same "chat format" as Llama3.1-instruct models (same system/user/assistant tokens).
|
| 43 |
+
Please note that these models have NOT been instruction-tuned on general data and thus might not provide good answers outside of the math domain.
|
| 44 |
|
| 45 |
+
We recommend using [instructions in our repo](https://github.com/NVIDIA/NeMo-Skills/blob/main/docs/basics/inference.md) to run inference with these models, but here is
|
| 46 |
an example of how to do it through transformers api:
|
| 47 |
|
| 48 |
```python
|
|
|
|
| 74 |
|
| 75 |
# Reproducing our results
|
| 76 |
|
| 77 |
+
We provide [all instructions](https://github.com/NVIDIA/NeMo-Skills/blob/main/docs/openmathinstruct2/index.md) to fully reproduce our results.
|
| 78 |
|
| 79 |
## Citation
|
| 80 |
|