Text Generation
MLX
Safetensors
English
k2_horizon
mlx-lm
8-bit precision
k2-horizon
long-context
512k-context
dense
conversational
custom_code
Instructions to use abenzerps/K2-Horizon-3.7B-MLX-8bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use abenzerps/K2-Horizon-3.7B-MLX-8bit 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("abenzerps/K2-Horizon-3.7B-MLX-8bit") 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 abenzerps/K2-Horizon-3.7B-MLX-8bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "abenzerps/K2-Horizon-3.7B-MLX-8bit"
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": "abenzerps/K2-Horizon-3.7B-MLX-8bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- MLX LM
How to use abenzerps/K2-Horizon-3.7B-MLX-8bit with MLX LM:
Generate or start a chat session
# Install MLX LM uv tool install mlx-lm # Interactive chat REPL mlx_lm.chat --model "abenzerps/K2-Horizon-3.7B-MLX-8bit"
Run an OpenAI-compatible server
# Install MLX LM uv tool install mlx-lm # Start the server mlx_lm.server --model "abenzerps/K2-Horizon-3.7B-MLX-8bit" # Calling the OpenAI-compatible server with curl curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "abenzerps/K2-Horizon-3.7B-MLX-8bit", "messages": [ {"role": "user", "content": "Hello"} ] }' - Hermes Agent
How to use abenzerps/K2-Horizon-3.7B-MLX-8bit 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 "abenzerps/K2-Horizon-3.7B-MLX-8bit"
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 abenzerps/K2-Horizon-3.7B-MLX-8bit
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use abenzerps/K2-Horizon-3.7B-MLX-8bit with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "abenzerps/K2-Horizon-3.7B-MLX-8bit"
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 "abenzerps/K2-Horizon-3.7B-MLX-8bit" \ --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"
| # Copyright 2024 The Qwen team, Alibaba Group and the HuggingFace Inc. team. All rights reserved. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| """K2Horizon model configuration""" | |
| from huggingface_hub.dataclasses import strict | |
| from transformers.configuration_utils import PreTrainedConfig | |
| from transformers.modeling_rope_utils import RopeParameters | |
| class K2HorizonConfig(PreTrainedConfig): | |
| r""" | |
| decoder_sparse_step (`int`, *optional*, defaults to 1): | |
| The frequency of the MoE layer. | |
| mlp_only_layers (`list[int]`, *optional*, defaults to `[]`): | |
| Indicate which layers use K2HorizonMLP rather than K2HorizonSparseMoeBlock | |
| The list contains layer index, from 0 to num_layers-1 if we have num_layers layers | |
| If `mlp_only_layers` is empty, `decoder_sparse_step` is used to determine the sparsity. | |
| ```python | |
| >>> from transformers import K2HorizonModel, K2HorizonConfig | |
| >>> # Initializing a K2Horizon style configuration | |
| >>> configuration = K2HorizonConfig() | |
| >>> model = K2HorizonModel(configuration) | |
| >>> # Accessing the model configuration | |
| >>> configuration = model.config | |
| ``` | |
| """ | |
| model_type = "k2_horizon" | |
| keys_to_ignore_at_inference = ["past_key_values"] | |
| vocab_size: int = 151936 | |
| hidden_size: int = 2048 | |
| intermediate_size: int = 6144 | |
| num_hidden_layers: int = 24 | |
| num_attention_heads: int = 32 | |
| num_key_value_heads: int = 4 | |
| hidden_act: str = "silu" | |
| max_position_embeddings: int = 32768 | |
| initializer_range: float = 0.02 | |
| rms_norm_eps: float = 1e-6 | |
| use_cache: bool = True | |
| tie_word_embeddings: bool = False | |
| rope_parameters: RopeParameters | dict | None = None | |
| attention_bias: bool = False | |
| use_sliding_window: bool = False | |
| sliding_window: int | None = 4096 | |
| attention_dropout: float | int = 0.0 | |
| decoder_sparse_step: int = 1 | |
| moe_intermediate_size: int = 768 | |
| num_experts_per_tok: int = 8 | |
| num_experts: int = 128 | |
| norm_topk_prob: bool = False | |
| output_router_logits: bool = False | |
| router_aux_loss_coef: float = 0.001 | |
| mlp_only_layers: list[int] | None = None | |
| pad_token_id: int | None = None | |
| bos_token_id: int | None = None | |
| eos_token_id: int | list[int] | None = None | |
| head_dim: int = 128 | |
| query_key_norm: bool = True | |
| moe_gate_bias: bool = False | |
| layernorm_num_groups: int = 1 | |
| num_shared_experts: int = 0 | |
| router_score_func: str = "softmax" | |
| router_scaling_factor: float | None = 1.0 | |
| rope_head_dim: int | None = None | |
| attention_gate_func: str | None = None | |
| mova_num_experts: int = 0 | |
| mova_num_experts_per_tok: int = 0 | |
| def __post_init__(self, **kwargs): | |
| self.sliding_window = self.sliding_window if self.use_sliding_window else None | |
| self.mlp_only_layers = [] if self.mlp_only_layers is None else self.mlp_only_layers | |
| if self.router_scaling_factor is None: | |
| self.router_scaling_factor = 1.0 | |
| super().__post_init__(**kwargs) | |
| __all__ = ["K2HorizonConfig"] |