Instructions to use KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b") model = AutoModelForCausalLM.from_pretrained("KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b", device_map="auto") 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]:])) - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b
- SGLang
How to use KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b 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 "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b" \ --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": "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b" \ --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": "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b with Docker Model Runner:
docker model run hf.co/KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b
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 "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b" \
--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": "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'MachiNoDolphin-Qwen2.5-72b
This is a merge of pre-trained language models created using mergekit.
Pulling in shuttle and Evathene for funnsies. Please ignore model.
30/11/24: Heard that people like this model. So I guess, don't ignore it and give it a try? Also, added Featherless link and GGUF for this. Prompt format is ChatML like most Qwen 2.5 chat based models.
Merge Details
Prompting
Chat format is ChatML. It is mostly uncensored. For 99% of the time, you shouldn't run into any issues. For that 1%, just change your system prompt.
Settings I use in general:
Temp: 1.3-1.2
MinP: 0.05
TopA: 0.2
RepPen: 1.05
Rest is disabled/not used.
Merge Method
This model was merged using the TIES merge method using Qwen/Qwen2.5-72B as a base.
Models Merged
The following models were included in the merge:
- sophosympatheia/Evathene-v1.0
- KaraKaraWitch/SteyrCannon-0.2-Qwen2.5-72b
- m8than/banana-2-b-72b
- shuttleai/shuttle-3
- ZeusLabs/Chronos-Platinum-72B
Configuration
The following YAML configuration was used to produce this model:
models:
- model: KaraKaraWitch/SteyrCannon-0.2-Qwen2.5-72b
parameters:
density: 0.25
weight: 0.5
- model: ZeusLabs/Chronos-Platinum-72B
parameters:
density: 0.5
weight: 0.75
- model: m8than/banana-2-b-72b
parameters:
density: 0.65
weight: 0.40
- model: shuttleai/shuttle-3
parameters:
density: 0.65
weight: 0.40
- model: sophosympatheia/Evathene-v1.0
parameters:
density: 0.65
weight: 0.40
merge_method: ties
base_model: Qwen/Qwen2.5-72B
parameters:
normalize: true
dtype: bfloat16
- Downloads last month
- 10

Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b" \ --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": "KaraKaraWitch/MachiNoDolphin-Qwen2.5-72b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'