jondurbin/gutenberg-dpo-v0.1
Viewer • Updated • 918 • 488 • 165
How to use Statuo/Lyra-Gutenberg-12b-EXL2-4bpw with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="Statuo/Lyra-Gutenberg-12b-EXL2-4bpw") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Statuo/Lyra-Gutenberg-12b-EXL2-4bpw")
model = AutoModelForCausalLM.from_pretrained("Statuo/Lyra-Gutenberg-12b-EXL2-4bpw")How to use Statuo/Lyra-Gutenberg-12b-EXL2-4bpw with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Statuo/Lyra-Gutenberg-12b-EXL2-4bpw"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Statuo/Lyra-Gutenberg-12b-EXL2-4bpw",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/Statuo/Lyra-Gutenberg-12b-EXL2-4bpw
How to use Statuo/Lyra-Gutenberg-12b-EXL2-4bpw with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "Statuo/Lyra-Gutenberg-12b-EXL2-4bpw" \
--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": "Statuo/Lyra-Gutenberg-12b-EXL2-4bpw",
"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 "Statuo/Lyra-Gutenberg-12b-EXL2-4bpw" \
--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": "Statuo/Lyra-Gutenberg-12b-EXL2-4bpw",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use Statuo/Lyra-Gutenberg-12b-EXL2-4bpw with Docker Model Runner:
docker model run hf.co/Statuo/Lyra-Gutenberg-12b-EXL2-4bpw
Mostly quanting this to try it out, didn't see any other quants for EXL2 on this so here we are.
This is the 4bpw version of this model. Find the original here.
For the 8bpw version, go here
For the 6bpw version, go here
Sao10K/MN-12B-Lyra-v1 finetuned on jondurbin/gutenberg-dpo-v0.1.
Finetuned using an A100 on Google Colab for 3 epochs.
Base model
Sao10K/MN-12B-Lyra-v1