CheshireAI/guanaco-unchained
Viewer • Updated • 2.95k • 10 • 26
How to use TinyPixel/qwen-1.8B-guanaco with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="TinyPixel/qwen-1.8B-guanaco", trust_remote_code=True) # Load model directly
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("TinyPixel/qwen-1.8B-guanaco", trust_remote_code=True, device_map="auto")How to use TinyPixel/qwen-1.8B-guanaco with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "TinyPixel/qwen-1.8B-guanaco"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "TinyPixel/qwen-1.8B-guanaco",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/TinyPixel/qwen-1.8B-guanaco
How to use TinyPixel/qwen-1.8B-guanaco with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "TinyPixel/qwen-1.8B-guanaco" \
--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": "TinyPixel/qwen-1.8B-guanaco",
"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 "TinyPixel/qwen-1.8B-guanaco" \
--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": "TinyPixel/qwen-1.8B-guanaco",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use TinyPixel/qwen-1.8B-guanaco with Docker Model Runner:
docker model run hf.co/TinyPixel/qwen-1.8B-guanaco
!pip install -q -U trl transformers accelerate git+https://github.com/huggingface/peft.git
!pip install -q datasets bitsandbytes einops wandb sentencepiece transformers_stream_generator tiktoken
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
tokenizer = AutoTokenizer.from_pretrained("TinyPixel/qwen-1.8B-guanaco", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("TinyPixel/qwen-1.8B-guanaco", torch_dtype=torch.bfloat16, device_map="auto", trust_remote_code=True)
device = "cuda:0"
from transformers import StoppingCriteria, StoppingCriteriaList
stop_token_ids = [[14374, 11097, 25], [14374, 21388, 25]]
stop_token_ids = [torch.LongTensor(x).to(device) for x in stop_token_ids]
from transformers import StoppingCriteria, StoppingCriteriaList
class StopOnTokens(StoppingCriteria):
def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor, **kwargs) -> bool:
for stop_ids in stop_token_ids:
if torch.eq(input_ids[0][-len(stop_ids):], stop_ids).all():
return True
return False
stopping_criteria = StoppingCriteriaList([StopOnTokens()])
text = '''### Human: what is the difference between a dog and a cat on a biological level?
### Assistant:'''
inputs = tokenizer(text, return_tensors="pt").to(device)
outputs = model.generate(**inputs,
max_new_tokens=512,
stopping_criteria=stopping_criteria,
do_sample=True,
top_p=0.95,
temperature=0.7,
top_k=50)
print(tokenizer.decode(outputs[0], skip_special_tokens=False)
Here is a colab notebook to use this model https://colab.research.google.com/drive/1vS5MF2WNXtXMKNDXFua0T43l7HJ51nOW?usp=sharing