Merged Models
Collection
Using mergekit • 10 items • Updated • 3
How to use Aryanne/Astrea-RP-v1-3B with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="Aryanne/Astrea-RP-v1-3B", trust_remote_code=True)
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe(messages) # Load model directly
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("Aryanne/Astrea-RP-v1-3B", trust_remote_code=True, device_map="auto")How to use Aryanne/Astrea-RP-v1-3B with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Aryanne/Astrea-RP-v1-3B"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Aryanne/Astrea-RP-v1-3B",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/Aryanne/Astrea-RP-v1-3B
How to use Aryanne/Astrea-RP-v1-3B with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "Aryanne/Astrea-RP-v1-3B" \
--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": "Aryanne/Astrea-RP-v1-3B",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'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 "Aryanne/Astrea-RP-v1-3B" \
--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": "Aryanne/Astrea-RP-v1-3B",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use Aryanne/Astrea-RP-v1-3B with Docker Model Runner:
docker model run hf.co/Aryanne/Astrea-RP-v1-3B
This model is a merge of euclaise/Echo-3B, stabilityai/stablelm-zephyr-3b and Aryanne/Astridboros-3B using task_arithmetic(see astrea-rp-v1-3b.yml or below).
merge_method: task_arithmetic
base_model: euclaise/Ferret-3B
models:
- model: euclaise/Ferret-3B
- model: stabilityai/stablelm-zephyr-3b
parameters:
weight: 0.33
- model: euclaise/Echo-3B
parameters:
weight: 0.66
- model: Aryanne/Astridboros-3B
parameters:
weight: 0.16
dtype: float16
I recommend the use of Vicuna prompt format, but it's your choice to see what works for you.
GGUF quants: afrideva/Astrea-RP-v1-3B-GGUF
I think zephyr license applies to this merge, for non commercial use.