Text Generation
MLX
Safetensors
qwen3_5_moe
mlx-optiq
quantization
Mixture of Experts
qwen3.5
qwen35moe
apple-silicon
speculative-decoding
conversational
Eval Results (legacy)
4-bit precision
Instructions to use programmer-666/Ornith-1.0-35B-MLX-oQ7 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use programmer-666/Ornith-1.0-35B-MLX-oQ7 with MLX:
# Make sure mlx-lm is installed # pip install --upgrade mlx-lm # Generate text with mlx-lm from mlx_lm import load, generate model, tokenizer = load("programmer-666/Ornith-1.0-35B-MLX-oQ7") prompt = "Write a story about Einstein" messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True ) text = generate(model, tokenizer, prompt=prompt, verbose=True) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use programmer-666/Ornith-1.0-35B-MLX-oQ7 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "programmer-666/Ornith-1.0-35B-MLX-oQ7"
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "programmer-666/Ornith-1.0-35B-MLX-oQ7" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use programmer-666/Ornith-1.0-35B-MLX-oQ7 with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "programmer-666/Ornith-1.0-35B-MLX-oQ7"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "programmer-666/Ornith-1.0-35B-MLX-oQ7" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "programmer-666/Ornith-1.0-35B-MLX-oQ7", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use programmer-666/Ornith-1.0-35B-MLX-oQ7 with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "programmer-666/Ornith-1.0-35B-MLX-oQ7"
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default programmer-666/Ornith-1.0-35B-MLX-oQ7
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use programmer-666/Ornith-1.0-35B-MLX-oQ7 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "programmer-666/Ornith-1.0-35B-MLX-oQ7"
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "programmer-666/Ornith-1.0-35B-MLX-oQ7" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,127 +13,126 @@ tags:
|
|
| 13 |
- qwen35moe
|
| 14 |
- apple-silicon
|
| 15 |
- speculative-decoding
|
| 16 |
-
- multi-token-prediction
|
| 17 |
model-index:
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
| 97 |
-
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
|
| 113 |
-
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
---
|
| 138 |
|
| 139 |
# Ornith-1.0-35B-oQ7
|
|
|
|
| 13 |
- qwen35moe
|
| 14 |
- apple-silicon
|
| 15 |
- speculative-decoding
|
|
|
|
| 16 |
model-index:
|
| 17 |
+
- name: Ornith-1.0-35B-oQ7
|
| 18 |
+
results:
|
| 19 |
+
- task:
|
| 20 |
+
type: text-generation
|
| 21 |
+
dataset:
|
| 22 |
+
name: MMLU
|
| 23 |
+
type: cais/mmlu
|
| 24 |
+
metrics:
|
| 25 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 26 |
+
type: accuracy
|
| 27 |
+
value: 86.7
|
| 28 |
+
- task:
|
| 29 |
+
type: text-generation
|
| 30 |
+
dataset:
|
| 31 |
+
name: MMLU-Pro
|
| 32 |
+
type: TIGER-Lab/MMLU-Pro
|
| 33 |
+
metrics:
|
| 34 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 35 |
+
type: accuracy
|
| 36 |
+
value: 76.7
|
| 37 |
+
- task:
|
| 38 |
+
type: text-generation
|
| 39 |
+
dataset:
|
| 40 |
+
name: HellaSwag
|
| 41 |
+
type: Rowan/hellaswag
|
| 42 |
+
metrics:
|
| 43 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 44 |
+
type: accuracy
|
| 45 |
+
value: 86.7
|
| 46 |
+
- task:
|
| 47 |
+
type: text-generation
|
| 48 |
+
dataset:
|
| 49 |
+
name: TruthfulQA
|
| 50 |
+
type: truthful_qa
|
| 51 |
+
metrics:
|
| 52 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 53 |
+
type: accuracy
|
| 54 |
+
value: 90
|
| 55 |
+
- task:
|
| 56 |
+
type: text-generation
|
| 57 |
+
dataset:
|
| 58 |
+
name: ARC Challenge
|
| 59 |
+
type: allenai/ai2_arc
|
| 60 |
+
metrics:
|
| 61 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 62 |
+
type: accuracy
|
| 63 |
+
value: 93.3
|
| 64 |
+
- task:
|
| 65 |
+
type: text-generation
|
| 66 |
+
dataset:
|
| 67 |
+
name: Winogrande
|
| 68 |
+
type: winogrande
|
| 69 |
+
metrics:
|
| 70 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 71 |
+
type: accuracy
|
| 72 |
+
value: 86.7
|
| 73 |
+
- task:
|
| 74 |
+
type: text-generation
|
| 75 |
+
dataset:
|
| 76 |
+
name: GSM8K
|
| 77 |
+
type: openai/gsm8k
|
| 78 |
+
metrics:
|
| 79 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 80 |
+
type: accuracy
|
| 81 |
+
value: 96.7
|
| 82 |
+
- task:
|
| 83 |
+
type: text-generation
|
| 84 |
+
dataset:
|
| 85 |
+
name: MathQA
|
| 86 |
+
type: math_qa
|
| 87 |
+
metrics:
|
| 88 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 89 |
+
type: accuracy
|
| 90 |
+
value: 93.3
|
| 91 |
+
- task:
|
| 92 |
+
type: text-generation
|
| 93 |
+
dataset:
|
| 94 |
+
name: HumanEval
|
| 95 |
+
type: openai/openai_humaneval
|
| 96 |
+
metrics:
|
| 97 |
+
- name: Pass@1 (30-sample, thinking enabled)
|
| 98 |
+
type: code_eval
|
| 99 |
+
value: 90
|
| 100 |
+
- task:
|
| 101 |
+
type: text-generation
|
| 102 |
+
dataset:
|
| 103 |
+
name: MBPP
|
| 104 |
+
type: google-research-datasets/mbpp
|
| 105 |
+
metrics:
|
| 106 |
+
- name: Pass@1 (30-sample, thinking enabled)
|
| 107 |
+
type: code_eval
|
| 108 |
+
value: 90
|
| 109 |
+
- task:
|
| 110 |
+
type: text-generation
|
| 111 |
+
dataset:
|
| 112 |
+
name: LiveCodeBench
|
| 113 |
+
type: livecodebench/code_generation_lite
|
| 114 |
+
metrics:
|
| 115 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 116 |
+
type: code_eval
|
| 117 |
+
value: 63.3
|
| 118 |
+
- task:
|
| 119 |
+
type: text-generation
|
| 120 |
+
dataset:
|
| 121 |
+
name: BBQ
|
| 122 |
+
type: herojhc/bbq
|
| 123 |
+
metrics:
|
| 124 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 125 |
+
type: accuracy
|
| 126 |
+
value: 93.3
|
| 127 |
+
- task:
|
| 128 |
+
type: text-generation
|
| 129 |
+
dataset:
|
| 130 |
+
name: SafetyBench
|
| 131 |
+
type: thu-coai/SafetyBench
|
| 132 |
+
metrics:
|
| 133 |
+
- name: Accuracy (30-sample, thinking enabled)
|
| 134 |
+
type: accuracy
|
| 135 |
+
value: 86.7
|
| 136 |
---
|
| 137 |
|
| 138 |
# Ornith-1.0-35B-oQ7
|