Instructions to use tiny-random/kimi-linear with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use tiny-random/kimi-linear with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="tiny-random/kimi-linear", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("tiny-random/kimi-linear", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use tiny-random/kimi-linear with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "tiny-random/kimi-linear" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "tiny-random/kimi-linear", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/tiny-random/kimi-linear
- SGLang
How to use tiny-random/kimi-linear 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 "tiny-random/kimi-linear" \ --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": "tiny-random/kimi-linear", "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 "tiny-random/kimi-linear" \ --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": "tiny-random/kimi-linear", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use tiny-random/kimi-linear with Docker Model Runner:
docker model run hf.co/tiny-random/kimi-linear
| library_name: transformers | |
| pipeline_tag: text-generation | |
| inference: true | |
| widget: | |
| - text: Hello! | |
| example_title: Hello world | |
| group: Python | |
| base_model: | |
| - moonshotai/Kimi-Linear-48B-A3B-Instruct | |
| This tiny model is intended for debugging. It is randomly initialized using the configuration adapted from [moonshotai/Kimi-Linear-48B-A3B-Instruct](https://huggingface.co/moonshotai/Kimi-Linear-48B-A3B-Instruct). | |
| ### Example usage: | |
| - vLLM | |
| ```bash | |
| vllm serve tiny-random/kimi-linear --trust-remote-code | |
| ``` | |
| - Transformers | |
| ```python | |
| # tested on transformers==4.57.1 | |
| import torch | |
| import transformers | |
| from transformers import AutoModelForCausalLM, AutoTokenizer | |
| model_id = "tiny-random/kimi-linear" | |
| model = AutoModelForCausalLM.from_pretrained( | |
| model_id, | |
| dtype=torch.bfloat16, | |
| device_map="cuda", | |
| trust_remote_code=True | |
| ) | |
| tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True) | |
| messages = [ | |
| {"role": "system", "content": "You are a helpful assistant provided by Moonshot-AI."}, | |
| {"role": "user", "content": "Is 123 a prime?"} | |
| ] | |
| input_ids = tokenizer.apply_chat_template( | |
| messages, | |
| add_generation_prompt=True, | |
| return_tensors="pt", | |
| tokenize=True, | |
| ).to(model.device) | |
| print(input_ids) | |
| generated_ids = model.generate(inputs=input_ids, max_new_tokens=500) | |
| response = tokenizer.batch_decode(generated_ids)[0] | |
| print(response) | |
| ``` | |
| ### Codes to create this repo: | |
| ```python | |
| import json | |
| from pathlib import Path | |
| import accelerate | |
| import torch | |
| from huggingface_hub import file_exists, hf_hub_download | |
| from transformers import ( | |
| AutoConfig, | |
| AutoModelForCausalLM, | |
| AutoProcessor, | |
| AutoTokenizer, | |
| GenerationConfig, | |
| set_seed, | |
| ) | |
| source_model_id = "moonshotai/Kimi-Linear-48B-A3B-Instruct" | |
| save_folder = "/tmp/tiny-random/kimi-linear" | |
| Path(save_folder).mkdir(parents=True, exist_ok=True) | |
| tokenizer = AutoTokenizer.from_pretrained( | |
| source_model_id, trust_remote_code=True) | |
| tokenizer.save_pretrained(save_folder) | |
| with open(hf_hub_download(source_model_id, filename='tokenizer_config.json', repo_type='model'), 'r', encoding='utf-8') as f: | |
| tokenizer_config_json = json.load(f) | |
| tokenizer_config_json['auto_map']['AutoTokenizer'][0] = f'{source_model_id}--' + \ | |
| tokenizer_config_json["auto_map"]["AutoTokenizer"][0] | |
| with open(f"{save_folder}/tokenizer_config.json", "w", encoding='utf-8') as f: | |
| json.dump(tokenizer_config_json, f, indent=2) | |
| # hf_hub_download(source_model_id, filename='tiktoken.model', repo_type='model', | |
| # local_dir=save_folder, local_dir_use_symlinks=True, cache_dir='/tmp/') | |
| with open(hf_hub_download(source_model_id, filename='config.json', repo_type='model'), 'r', encoding='utf-8') as f: | |
| config_json = json.load(f) | |
| for k, v in config_json['auto_map'].items(): | |
| config_json['auto_map'][k] = f'{source_model_id}--{v}' | |
| config_json.update({ | |
| "head_dim": 32, | |
| "hidden_size": 8, | |
| "intermediate_size": 32, | |
| "linear_attn_config": { | |
| "full_attn_layers": [4], | |
| "head_dim": 32, | |
| "kda_layers": [1, 2, 3], | |
| "num_heads": 8, | |
| "short_conv_kernel_size": 4, | |
| }, | |
| "num_attention_heads": 8, | |
| "num_key_value_heads": 8, | |
| "moe_intermediate_size": 32, | |
| "num_hidden_layers": 5, | |
| }) | |
| with open(f"{save_folder}/config.json", "w", encoding='utf-8') as f: | |
| json.dump(config_json, f, indent=2) | |
| config = AutoConfig.from_pretrained( | |
| save_folder, | |
| trust_remote_code=True, | |
| ) | |
| print(config) | |
| torch.set_default_dtype(torch.bfloat16) | |
| model = AutoModelForCausalLM.from_config(config, trust_remote_code=True) | |
| torch.set_default_dtype(torch.float32) | |
| if file_exists(filename="generation_config.json", repo_id=source_model_id, repo_type='model'): | |
| model.generation_config = GenerationConfig.from_pretrained( | |
| source_model_id, trust_remote_code=True, | |
| ) | |
| set_seed(42) | |
| model = model.cpu() | |
| n_parms = sum(p.numel() for p in model.parameters()) | |
| with torch.no_grad(): | |
| for name, p in sorted(model.named_parameters()): | |
| torch.nn.init.normal_(p, 0, 0.1) | |
| print(name, p.shape, (p.numel() / n_parms * 100), '%') | |
| model.save_pretrained(save_folder) | |
| with open(f"{save_folder}/config.json", "r", encoding='utf-8') as f: | |
| config_json = json.load(f) | |
| config_json['auto_map'] = {k: f'{source_model_id}--' + v.split( | |
| '--')[-1] for k, v in config_json['auto_map'].items()} | |
| with open(f"{save_folder}/config.json", "w", encoding='utf-8') as f: | |
| json.dump(config_json, f, indent=2) | |
| for python_file in Path(save_folder).glob('*.py'): | |
| python_file.unlink() | |
| ``` | |
| ### Printing the model: | |
| ```text | |
| KimiLinearForCausalLM( | |
| (model): KimiLinearModel( | |
| (embed_tokens): Embedding(163840, 8, padding_idx=163839) | |
| (layers): ModuleList( | |
| (0): KimiDecoderLayer( | |
| (self_attn): KimiDeltaAttention( | |
| (q_proj): Linear(in_features=8, out_features=256, bias=False) | |
| (k_proj): Linear(in_features=8, out_features=256, bias=False) | |
| (v_proj): Linear(in_features=8, out_features=256, bias=False) | |
| (q_conv1d): ShortConvolution(256, 256, kernel_size=(4,), stride=(1,), padding=(3,), groups=256, bias=False, activation=silu, backend=triton) | |
| (k_conv1d): ShortConvolution(256, 256, kernel_size=(4,), stride=(1,), padding=(3,), groups=256, bias=False, activation=silu, backend=triton) | |
| (v_conv1d): ShortConvolution(256, 256, kernel_size=(4,), stride=(1,), padding=(3,), groups=256, bias=False, activation=silu, backend=triton) | |
| (f_a_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (f_b_proj): Linear(in_features=32, out_features=256, bias=False) | |
| (b_proj): Linear(in_features=8, out_features=8, bias=False) | |
| (g_a_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (g_b_proj): Linear(in_features=32, out_features=256, bias=False) | |
| (o_norm): FusedRMSNormGated(32, eps=1e-05, activation=sigmoid) | |
| (o_proj): Linear(in_features=256, out_features=8, bias=False) | |
| ) | |
| (mlp): KimiMLP( | |
| (gate_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (up_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (down_proj): Linear(in_features=32, out_features=8, bias=False) | |
| (act_fn): SiLUActivation() | |
| ) | |
| (input_layernorm): KimiRMSNorm() | |
| (post_attention_layernorm): KimiRMSNorm() | |
| ) | |
| (1-2): 2 x KimiDecoderLayer( | |
| (self_attn): KimiDeltaAttention( | |
| (q_proj): Linear(in_features=8, out_features=256, bias=False) | |
| (k_proj): Linear(in_features=8, out_features=256, bias=False) | |
| (v_proj): Linear(in_features=8, out_features=256, bias=False) | |
| (q_conv1d): ShortConvolution(256, 256, kernel_size=(4,), stride=(1,), padding=(3,), groups=256, bias=False, activation=silu, backend=triton) | |
| (k_conv1d): ShortConvolution(256, 256, kernel_size=(4,), stride=(1,), padding=(3,), groups=256, bias=False, activation=silu, backend=triton) | |
| (v_conv1d): ShortConvolution(256, 256, kernel_size=(4,), stride=(1,), padding=(3,), groups=256, bias=False, activation=silu, backend=triton) | |
| (f_a_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (f_b_proj): Linear(in_features=32, out_features=256, bias=False) | |
| (b_proj): Linear(in_features=8, out_features=8, bias=False) | |
| (g_a_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (g_b_proj): Linear(in_features=32, out_features=256, bias=False) | |
| (o_norm): FusedRMSNormGated(32, eps=1e-05, activation=sigmoid) | |
| (o_proj): Linear(in_features=256, out_features=8, bias=False) | |
| ) | |
| (block_sparse_moe): KimiSparseMoeBlock( | |
| (experts): ModuleList( | |
| (0-255): 256 x KimiBlockSparseMLP( | |
| (w1): Linear(in_features=8, out_features=32, bias=False) | |
| (w2): Linear(in_features=32, out_features=8, bias=False) | |
| (w3): Linear(in_features=8, out_features=32, bias=False) | |
| (act_fn): SiLUActivation() | |
| ) | |
| ) | |
| (gate): KimiMoEGate() | |
| (shared_experts): KimiMLP( | |
| (gate_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (up_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (down_proj): Linear(in_features=32, out_features=8, bias=False) | |
| (act_fn): SiLUActivation() | |
| ) | |
| ) | |
| (input_layernorm): KimiRMSNorm() | |
| (post_attention_layernorm): KimiRMSNorm() | |
| ) | |
| (3-4): 2 x KimiDecoderLayer( | |
| (self_attn): KimiMLAAttention( | |
| (q_proj): Linear(in_features=8, out_features=1536, bias=False) | |
| (kv_a_proj_with_mqa): Linear(in_features=8, out_features=576, bias=False) | |
| (kv_a_layernorm): KimiRMSNorm() | |
| (kv_b_proj): Linear(in_features=512, out_features=2048, bias=False) | |
| (o_proj): Linear(in_features=1024, out_features=8, bias=False) | |
| ) | |
| (block_sparse_moe): KimiSparseMoeBlock( | |
| (experts): ModuleList( | |
| (0-255): 256 x KimiBlockSparseMLP( | |
| (w1): Linear(in_features=8, out_features=32, bias=False) | |
| (w2): Linear(in_features=32, out_features=8, bias=False) | |
| (w3): Linear(in_features=8, out_features=32, bias=False) | |
| (act_fn): SiLUActivation() | |
| ) | |
| ) | |
| (gate): KimiMoEGate() | |
| (shared_experts): KimiMLP( | |
| (gate_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (up_proj): Linear(in_features=8, out_features=32, bias=False) | |
| (down_proj): Linear(in_features=32, out_features=8, bias=False) | |
| (act_fn): SiLUActivation() | |
| ) | |
| ) | |
| (input_layernorm): KimiRMSNorm() | |
| (post_attention_layernorm): KimiRMSNorm() | |
| ) | |
| ) | |
| (norm): KimiRMSNorm() | |
| ) | |
| (lm_head): Linear(in_features=8, out_features=163840, bias=False) | |
| ) | |
| ``` |