Instructions to use timdettmers/guanaco-33b-merged with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use timdettmers/guanaco-33b-merged with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="timdettmers/guanaco-33b-merged")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("timdettmers/guanaco-33b-merged") model = AutoModelForCausalLM.from_pretrained("timdettmers/guanaco-33b-merged", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use timdettmers/guanaco-33b-merged with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "timdettmers/guanaco-33b-merged" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "timdettmers/guanaco-33b-merged", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/timdettmers/guanaco-33b-merged
- SGLang
How to use timdettmers/guanaco-33b-merged 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 "timdettmers/guanaco-33b-merged" \ --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": "timdettmers/guanaco-33b-merged", "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 "timdettmers/guanaco-33b-merged" \ --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": "timdettmers/guanaco-33b-merged", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use timdettmers/guanaco-33b-merged with Docker Model Runner:
docker model run hf.co/timdettmers/guanaco-33b-merged
what is the license for this model?
1
#16 opened about 3 years ago
by
chongy075
How to run this model?
#15 opened about 3 years ago
by
31337rickmorty
good performance but failed for long generation
3
#14 opened about 3 years ago
by
AIReach
Is there a script to merge guanaco-33b and llama-33b? How can I do it myself?
#13 opened over 3 years ago
by
64bits
Run this model with llama.cpp, get gibberish output
#12 opened over 3 years ago
by
xiaojinchuan
How to publish the merged weights?
๐ 1
#10 opened over 3 years ago
by
mtournier
Adding `safetensors` variant of this model
โค๏ธ 2
#9 opened over 3 years ago
by
ybelkada
Is it very slow , correct?
๐ 1
4
#8 opened over 3 years ago
by
carlosbdw
Suggestion to use safetensors as weights format
๐คฏ 1
#7 opened over 3 years ago
by
julien-c
Create README.md
๐ 1
#6 opened over 3 years ago
by
longj
Best version for fine tuning.
2
#5 opened over 3 years ago
by
psych0v0yager
Prompt Format?
๐ 1
2
#4 opened over 3 years ago
by
xzuyn
Whats the difference?
๐ 1
21
#3 opened over 3 years ago
by
ehartford