Instructions to use aucson/llama3-code-math-regmean-merge with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use aucson/llama3-code-math-regmean-merge with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="aucson/llama3-code-math-regmean-merge")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("aucson/llama3-code-math-regmean-merge") model = AutoModelForCausalLM.from_pretrained("aucson/llama3-code-math-regmean-merge") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use aucson/llama3-code-math-regmean-merge with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "aucson/llama3-code-math-regmean-merge" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "aucson/llama3-code-math-regmean-merge", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/aucson/llama3-code-math-regmean-merge
- SGLang
How to use aucson/llama3-code-math-regmean-merge with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "aucson/llama3-code-math-regmean-merge" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "aucson/llama3-code-math-regmean-merge", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "aucson/llama3-code-math-regmean-merge" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "aucson/llama3-code-math-regmean-merge", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use aucson/llama3-code-math-regmean-merge with Docker Model Runner:
docker model run hf.co/aucson/llama3-code-math-regmean-merge
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
-
|
|
|
|
|
|
|
| 4 |
---
|
| 5 |
|
| 6 |
|
|
@@ -13,7 +15,7 @@ This repo is a fast and numerically stable re-implementation of RegMean model me
|
|
| 13 |
We merge the following two models.
|
| 14 |
|
| 15 |
- [Code Model] [rombodawg/rombos_Replete-Coder-Llama3-8B](https://huggingface.co/rombodawg/rombos_Replete-Coder-Llama3-8B) (Re-implementation of Replete-Coder)
|
| 16 |
-
- [Math Model]
|
| 17 |
|
| 18 |
|
| 19 |
## Results
|
|
@@ -118,4 +120,4 @@ Here are other useful references that greatly inspired this re-implementation.
|
|
| 118 |
|
| 119 |
[1] Yadav et al. 2024, [What Matters for Model Merging at Scale?](https://arxiv.org/abs/2410.03617)
|
| 120 |
|
| 121 |
-
[2] Tam et al. 2024, [Merging by Matching Models in Task Parameter Subspaces](https://openreview.net/forum?id=qNGo6ghWFB)
|
|
|
|
| 1 |
---
|
| 2 |
library_name: transformers
|
| 3 |
+
base_model:
|
| 4 |
+
- rombodawg/rombos_Replete-Coder-Llama3-8B
|
| 5 |
+
- TIGER-Lab/MAmmoTH2-8B
|
| 6 |
---
|
| 7 |
|
| 8 |
|
|
|
|
| 15 |
We merge the following two models.
|
| 16 |
|
| 17 |
- [Code Model] [rombodawg/rombos_Replete-Coder-Llama3-8B](https://huggingface.co/rombodawg/rombos_Replete-Coder-Llama3-8B) (Re-implementation of Replete-Coder)
|
| 18 |
+
- [Math Model] [TIGER-Lab/MAmmoTH2-8B](https://huggingface.co/TIGER-Lab/MAmmoTH2-8B)
|
| 19 |
|
| 20 |
|
| 21 |
## Results
|
|
|
|
| 120 |
|
| 121 |
[1] Yadav et al. 2024, [What Matters for Model Merging at Scale?](https://arxiv.org/abs/2410.03617)
|
| 122 |
|
| 123 |
+
[2] Tam et al. 2024, [Merging by Matching Models in Task Parameter Subspaces](https://openreview.net/forum?id=qNGo6ghWFB)
|