mosaicml/dolly_hhrlhf
Viewer • Updated • 64.4k • 953 • 112
How to use VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf")
model = AutoModelForCausalLM.from_pretrained("VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf")How to use VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf
How to use VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf" \
--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": "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf" \
--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": "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf with Docker Model Runner:
docker model run hf.co/VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf
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 "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf" \
--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": "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'Fully Open Source, Commerically viable.
The instruction dataset, mosaicml/dolly_hhrlhf is under cc-by-sa-3.0, and the Language Model (openlm-research/open_llama_7b_preview_300bt) is under apache-2.0 License.
Please load the tokenizer with 'add_bos_token = True' parameter as the underlying OpenLLaMa model and this model were trained with a BOS token.
import os
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = 'VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf'
tokenizer = AutoTokenizer.from_pretrained(model_name, add_bos_token = True)
model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype= torch.float16, device_map = 'sequential')
prompt_template = "Below is an instruction that describes a task. Write a response that appropriately completes the request.\n\n### Instruction:\n{instruction}\n\n### Response:"
prompt= 'how do I bake a cake?'
inputt = prompt_template.format(instruction= prompt)
input_ids = tokenizer(inputt, return_tensors="pt").input_ids.to("cuda")
output1 = model.generate(input_ids, max_length=512)
input_length = input_ids.shape[1]
output1 = output1[:, input_length:]
output= tokenizer.decode(output1[0])
print(output)
'''
Baking a cake is a simple process. You will need to prepare a cake mixture, then bake it in the oven. You can add various ingredients to the cake mixture, such as fruit, nuts, or spices, to make it flavorful. Baking a cake can be fun, as it creates a delicious dessert!</s>
'''
TODO
Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf" \ --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": "VMware/open-llama-0.3T-7B-instruct-dolly-hhrlhf", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'