Instructions to use GrazittiInteractive/llama-2-13b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use GrazittiInteractive/llama-2-13b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="GrazittiInteractive/llama-2-13b")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("GrazittiInteractive/llama-2-13b") model = AutoModelForCausalLM.from_pretrained("GrazittiInteractive/llama-2-13b") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use GrazittiInteractive/llama-2-13b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "GrazittiInteractive/llama-2-13b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "GrazittiInteractive/llama-2-13b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/GrazittiInteractive/llama-2-13b
- SGLang
How to use GrazittiInteractive/llama-2-13b 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 "GrazittiInteractive/llama-2-13b" \ --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": "GrazittiInteractive/llama-2-13b", "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 "GrazittiInteractive/llama-2-13b" \ --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": "GrazittiInteractive/llama-2-13b", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use GrazittiInteractive/llama-2-13b with Docker Model Runner:
docker model run hf.co/GrazittiInteractive/llama-2-13b
Commit ·
92d0cf5
1
Parent(s): 5a8c5ed
Update README.md
Browse files
README.md
CHANGED
|
@@ -18,7 +18,7 @@ license: other
|
|
| 18 |
|
| 19 |
# Meta's Llama 2 13B GGML
|
| 20 |
|
| 21 |
-
A 4 Bit GGML format quantized version of base mode Llama-2-13b taken from https://huggingface.co/meta-llama/Llama-2-13b, reduced from 24.2 GB to
|
| 22 |
|
| 23 |
These files are GGML format model files for [Meta's Llama 2 13B](https://huggingface.co/meta-llama/Llama-2-13b).
|
| 24 |
|
|
|
|
| 18 |
|
| 19 |
# Meta's Llama 2 13B GGML
|
| 20 |
|
| 21 |
+
A 4 Bit GGML format quantized version of base mode Llama-2-13b taken from https://huggingface.co/meta-llama/Llama-2-13b, reduced from 24.2 GB to 7.37GB
|
| 22 |
|
| 23 |
These files are GGML format model files for [Meta's Llama 2 13B](https://huggingface.co/meta-llama/Llama-2-13b).
|
| 24 |
|