Text Generation
Transformers
Safetensors
llama
gptq
4bit
int4
gptqmodel
modelcloud
llama-3.1
70b
instruct
conversational
text-generation-inference
4-bit precision
Instructions to use ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit") model = AutoModelForCausalLM.from_pretrained("ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit
- SGLang
How to use ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit 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 "ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit with Docker Model Runner:
docker model run hf.co/ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- gptq
|
| 4 |
+
- 4bit
|
| 5 |
+
- int4
|
| 6 |
+
- gptqmodel
|
| 7 |
+
- modelcloud
|
| 8 |
+
- llama-3.1
|
| 9 |
+
- 70b
|
| 10 |
+
- instruct
|
| 11 |
+
---
|
| 12 |
+
This model has been quantized using [GPTQModel](https://github.com/ModelCloud/GPTQModel).
|
| 13 |
+
|
| 14 |
+
- **bits**: 4
|
| 15 |
+
- **group_size**: 128
|
| 16 |
+
- **desc_act**: true
|
| 17 |
+
- **static_groups**: false
|
| 18 |
+
- **sym**: true
|
| 19 |
+
- **lm_head**: false
|
| 20 |
+
- **damp_percent**: 0.01
|
| 21 |
+
- **true_sequential**: true
|
| 22 |
+
- **model_name_or_path**: ""
|
| 23 |
+
- **model_file_base_name**: "model"
|
| 24 |
+
- **quant_method**: "gptq"
|
| 25 |
+
- **checkpoint_format**: "gptq"
|
| 26 |
+
- **meta**:
|
| 27 |
+
- **quantizer**: "gptqmodel:0.9.9-dev0"
|
| 28 |
+
|
| 29 |
+
**Here is an example:**
|
| 30 |
+
```python
|
| 31 |
+
from transformers import AutoTokenizer
|
| 32 |
+
from gptqmodel import GPTQModel
|
| 33 |
+
|
| 34 |
+
model_name = "ModelCloud/Meta-Llama-3.1-70B-Instruct-gptq-4bit"
|
| 35 |
+
|
| 36 |
+
prompt = [{"role": "user", "content": "I am in Shanghai, preparing to visit the natural history museum. Can you tell me the best way to"}]
|
| 37 |
+
|
| 38 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 39 |
+
|
| 40 |
+
model = GPTQModel.from_quantized(model_name)
|
| 41 |
+
|
| 42 |
+
input_tensor = tokenizer.apply_chat_template(prompt, add_generation_prompt=True, return_tensors="pt")
|
| 43 |
+
outputs = model.generate(input_ids=input_tensor.to(model.device), max_new_tokens=100)
|
| 44 |
+
result = tokenizer.decode(outputs[0][input_tensor.shape[1]:], skip_special_tokens=True)
|
| 45 |
+
|
| 46 |
+
print(result)
|
| 47 |
+
```
|