Merge Experiments
Collection
Sorted from oldest (top) to newest (bottom) • 122 items • Updated • 4
How to use Naphula/SpaceBound-24B-v1 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="Naphula/SpaceBound-24B-v1")
messages = [
{"role": "user", "content": "Who are you?"},
]
pipe(messages) # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Naphula/SpaceBound-24B-v1")
model = AutoModelForCausalLM.from_pretrained("Naphula/SpaceBound-24B-v1")
messages = [
{"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
messages,
add_generation_prompt=True,
tokenize=True,
return_dict=True,
return_tensors="pt",
).to(model.device)
outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))How to use Naphula/SpaceBound-24B-v1 with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "Naphula/SpaceBound-24B-v1"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "Naphula/SpaceBound-24B-v1",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'docker model run hf.co/Naphula/SpaceBound-24B-v1
How to use Naphula/SpaceBound-24B-v1 with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "Naphula/SpaceBound-24B-v1" \
--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": "Naphula/SpaceBound-24B-v1",
"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 "Naphula/SpaceBound-24B-v1" \
--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": "Naphula/SpaceBound-24B-v1",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'How to use Naphula/SpaceBound-24B-v1 with Docker Model Runner:
docker model run hf.co/Naphula/SpaceBound-24B-v1
SpaceBound is an experimental hybrid fork expansion of the WeirdCompound/BereavedCompound model series by FlareRebellion.
This is the full pipeline merge for
model_stock → slerp → nuslerp → flux
It took over 12 hours for the total merge. Possibly performs worse than the model_stock base. Uploaded here for archival and testing purposes.
---
architecture: MistralForCausalLM
base_model: TheDrummer/Cydonia-24B-v4.3 # Cydonia v4.3
merge_method: model_stock
models:
- model: TheDrummer/Magidonia-24B-v4.3 # sprinkle in some extra Magidonia
- model: TheDrummer/Precog-24B-v1 # uncensored intelligence
- model: TheDrummer/Rivermind-24B-v1 # randomness
- model: Naphula/BeaverAI_Fallen-Mistral-Small-3.1-24B-v1e_textonly # Zest
- model: aixonlab/Eurydice-24b-v3.5 # storytelling / RP
- model: ReadyArt/MS3.2-The-Omega-Directive-24B-Unslop-v2.1 # RP
- model: PocketDoc/Dans-PersonalityEngine-V1.3.0-24b # Prompt Adherence
- model: CrucibleLab/M3.2-24B-Loki-V1.3 # Loki
- model: zerofata/MS3.2-PaintedFantasy-v3-24B # animu
- model: Delta-Vector/Rei-24B-KTO # sprinkle in some extra Painted Fantasy
- model: LatitudeGames/Hearthfire-24B # Adventure
- model: Gryphe/Pantheon-RP-1.8-24b-Small-3.1 # more adventure
- model: Delta-Vector/Austral-24B-Winton # extra Harbinger
- model: Delta-Vector/MS3.2-Austral-Winton # extra Codex
- model: Darkhn/M3.2-24B-Animus-V5.1-Pro # Dragons
- model: SicariusSicariiStuff/Impish_Magic_24B # Tsundere / Combat
- model: allura-forge/ms32-final-TEXTONLY # Angel
- model: trashpanda-org/MS3.2-24B-Mullein-v2 # Erebus
- model: Doctor-Shotgun/MS3.2-24B-Magnum-Diamond # Claude
parameters:
filter_wise: false
dtype: float32
out_dtype: bfloat16
tokenizer:
source: union
chat_template: auto
---
merge_method: slerp
base_model: anthracite-core/Mistral-Small-3.2-24B-Instruct-2506-Text-Only
models:
- model: /intermediate/model/A
parameters:
t: 0.5
dtype: float32
out_dtype: bfloat16
tokenizer:
source: /intermediate/model/A
chat_template: auto
---
merge_method: nuslerp
base_model: /intermediate/model/B
models:
- model: PocketDoc/Dans-PersonalityEngine-V1.3.0-24b
parameters:
weight: 0.5
- model: CrucibleLab/M3.2-24B-Loki-V1.3
parameters:
weight: 0.5
dtype: float32
out_dtype: bfloat16
tokenizer:
source: /intermediate/model/B
chat_template: auto
---
models:
- model: /intermediate/model/A
- model: /intermediate/model/B
- model: /intermediate/model/C
merge_method: flux
parameters:
tol: 1e-9
max_iter: 1000
kappa: 0.5
eta: 1.0
auto_buffer: true
dtype: float32
out_dtype: bfloat16
tokenizer:
source: union
chat_template: auto
name: SpaceBound-24B-v1