Views
No views yet
| Property | Value |
|---|---|
| Base Model | meta-llama/Meta-Llama-3-70B-Instruct |
| Format | GUFF |
| Quantization | None (Full Precision) |
| License | apache-2.0 |
| Created With | QuantLLM |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3# Load model and tokenizer
4model = AutoModelForCausalLM.from_pretrained("QuantLLM/Meta-Llama-3-70B-Instruct-4bit-gguf")
5tokenizer = AutoTokenizer.from_pretrained("QuantLLM/Meta-Llama-3-70B-Instruct-4bit-gguf")
6
7# Generate text
8inputs = tokenizer("Once upon a time", return_tensors="pt")
9outputs = model.generate(**inputs, max_new_tokens=100, do_sample=True)
10print(tokenizer.decode(outputs[0], skip_special_tokens=True))1from quantllm import TurboModel
2
3# Load with automatic optimization
4model = TurboModel.from_pretrained("QuantLLM/Meta-Llama-3-70B-Instruct-4bit-gguf")
5
6# Generate
7response = model.generate("Write a poem about coding")
8print(response)pip install transformers torch| Property | Value |
|---|---|
| Original Model | meta-llama/Meta-Llama-3-70B-Instruct |
| Format | GUFF |
| Quantization | Full Precision |
| License | apache-2.0 |
| Export Date | 2026-04-24 |
| Exported By | QuantLLM v2.0 |
1from quantllm import turbo
2
3# Load any HuggingFace model
4model = turbo("meta-llama/Meta-Llama-3-70B-Instruct")
5
6# Export to any format
7model.export("guff", quantization="Q4_K_M")
8
9# Push to HuggingFace
10model.push("your-repo", format="guff")