Text Generation
Transformers
Safetensors
English
llama
meta
llama-3
conversational
text-generation-inference
Instructions to use gradientai/Llama-3-8B-Instruct-262k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use gradientai/Llama-3-8B-Instruct-262k with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="gradientai/Llama-3-8B-Instruct-262k") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("gradientai/Llama-3-8B-Instruct-262k") model = AutoModelForCausalLM.from_pretrained("gradientai/Llama-3-8B-Instruct-262k", device_map="auto") 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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use gradientai/Llama-3-8B-Instruct-262k with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "gradientai/Llama-3-8B-Instruct-262k" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "gradientai/Llama-3-8B-Instruct-262k", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/gradientai/Llama-3-8B-Instruct-262k
- SGLang
How to use gradientai/Llama-3-8B-Instruct-262k 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 "gradientai/Llama-3-8B-Instruct-262k" \ --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": "gradientai/Llama-3-8B-Instruct-262k", "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 "gradientai/Llama-3-8B-Instruct-262k" \ --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": "gradientai/Llama-3-8B-Instruct-262k", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use gradientai/Llama-3-8B-Instruct-262k with Docker Model Runner:
docker model run hf.co/gradientai/Llama-3-8B-Instruct-262k
Clean up safetensor checkpoints.
#5
by michaelfeil - opened
- config.json +2 -2
- model_1714026236.safetensors +0 -3
- model_1714026249.safetensors +0 -3
- model_1714030720.safetensors +0 -3
- model_1714030732.safetensors +0 -3
- model_1714062973.safetensors +0 -3
- model_1714063000.safetensors +0 -3
config.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
{
|
| 2 |
-
"_name_or_path": "gradientai/
|
| 3 |
"architectures": [
|
| 4 |
"LlamaForCausalLM"
|
| 5 |
],
|
|
@@ -11,7 +11,7 @@
|
|
| 11 |
"hidden_size": 4096,
|
| 12 |
"initializer_range": 0.02,
|
| 13 |
"intermediate_size": 14336,
|
| 14 |
-
"max_position_embeddings":
|
| 15 |
"model_type": "llama",
|
| 16 |
"num_attention_heads": 32,
|
| 17 |
"num_hidden_layers": 32,
|
|
|
|
| 1 |
{
|
| 2 |
+
"_name_or_path": "gradientai/Llama-3-8B-Instruct-262k",
|
| 3 |
"architectures": [
|
| 4 |
"LlamaForCausalLM"
|
| 5 |
],
|
|
|
|
| 11 |
"hidden_size": 4096,
|
| 12 |
"initializer_range": 0.02,
|
| 13 |
"intermediate_size": 14336,
|
| 14 |
+
"max_position_embeddings": 262144,
|
| 15 |
"model_type": "llama",
|
| 16 |
"num_attention_heads": 32,
|
| 17 |
"num_hidden_layers": 32,
|
model_1714026236.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:701a2f48e9c696136d8a0a6e50533d1d5a4a3579a0cf83f8a7ef4d14d586a7d8
|
| 3 |
-
size 539576
|
|
|
|
|
|
|
|
|
|
|
|
model_1714026249.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:701a2f48e9c696136d8a0a6e50533d1d5a4a3579a0cf83f8a7ef4d14d586a7d8
|
| 3 |
-
size 539576
|
|
|
|
|
|
|
|
|
|
|
|
model_1714030720.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:755dd55e55ad06d00ab94cc280900bb23babe0398c048f9c036ddcc8b056745f
|
| 3 |
-
size 539576
|
|
|
|
|
|
|
|
|
|
|
|
model_1714030732.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:755dd55e55ad06d00ab94cc280900bb23babe0398c048f9c036ddcc8b056745f
|
| 3 |
-
size 539576
|
|
|
|
|
|
|
|
|
|
|
|
model_1714062973.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8ea5e344027313bc79a3185a27c0b2616c6f1158935f87987a70444e60505c53
|
| 3 |
-
size 539576
|
|
|
|
|
|
|
|
|
|
|
|
model_1714063000.safetensors
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8ea5e344027313bc79a3185a27c0b2616c6f1158935f87987a70444e60505c53
|
| 3 |
-
size 539576
|
|
|
|
|
|
|
|
|
|
|
|