Text Generation
Transformers
GGUF
kimi_k2
quantum
reasoning
physics
entropy-injection
conversational
custom_code
compressed-tensors
imatrix
Instructions to use squ11z1/Hypnos-Colossus-1T with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use squ11z1/Hypnos-Colossus-1T with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="squ11z1/Hypnos-Colossus-1T", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("squ11z1/Hypnos-Colossus-1T", trust_remote_code=True, device_map="auto") - llama-cpp-python
How to use squ11z1/Hypnos-Colossus-1T with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="squ11z1/Hypnos-Colossus-1T", filename="Q3_K_M/Kimi-K2-Thinking-Q3_K_M-00001-of-00011.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use squ11z1/Hypnos-Colossus-1T with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M # Run inference directly in the terminal: llama cli -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M # Run inference directly in the terminal: llama cli -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M # Run inference directly in the terminal: ./llama-cli -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M
Use Docker
docker model run hf.co/squ11z1/Hypnos-Colossus-1T:Q3_K_M
- LM Studio
- Jan
- vLLM
How to use squ11z1/Hypnos-Colossus-1T with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "squ11z1/Hypnos-Colossus-1T" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "squ11z1/Hypnos-Colossus-1T", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/squ11z1/Hypnos-Colossus-1T:Q3_K_M
- SGLang
How to use squ11z1/Hypnos-Colossus-1T 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 "squ11z1/Hypnos-Colossus-1T" \ --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": "squ11z1/Hypnos-Colossus-1T", "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 "squ11z1/Hypnos-Colossus-1T" \ --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": "squ11z1/Hypnos-Colossus-1T", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use squ11z1/Hypnos-Colossus-1T with Ollama:
ollama run hf.co/squ11z1/Hypnos-Colossus-1T:Q3_K_M
- Unsloth Studio
How to use squ11z1/Hypnos-Colossus-1T with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for squ11z1/Hypnos-Colossus-1T to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for squ11z1/Hypnos-Colossus-1T to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for squ11z1/Hypnos-Colossus-1T to start chatting
- Pi
How to use squ11z1/Hypnos-Colossus-1T with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "squ11z1/Hypnos-Colossus-1T:Q3_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use squ11z1/Hypnos-Colossus-1T with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M
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 squ11z1/Hypnos-Colossus-1T:Q3_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use squ11z1/Hypnos-Colossus-1T with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf squ11z1/Hypnos-Colossus-1T:Q3_K_M
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 "squ11z1/Hypnos-Colossus-1T:Q3_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use squ11z1/Hypnos-Colossus-1T with Docker Model Runner:
docker model run hf.co/squ11z1/Hypnos-Colossus-1T:Q3_K_M
- Lemonade
How to use squ11z1/Hypnos-Colossus-1T with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull squ11z1/Hypnos-Colossus-1T:Q3_K_M
Run and chat with the model
lemonade run user.Hypnos-Colossus-1T-Q3_K_M
List all available models
lemonade list
Upload config.json with huggingface_hub
Browse files- config.json +152 -0
config.json
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_attn_implementation_autoset": false,
|
| 3 |
+
"_name_or_path": "squ11z1/Hypnos-Colossus-1T",
|
| 4 |
+
"add_cross_attention": false,
|
| 5 |
+
"architectures": [
|
| 6 |
+
"DeepseekV3ForCausalLM"
|
| 7 |
+
],
|
| 8 |
+
"attention_bias": false,
|
| 9 |
+
"attention_dropout": 0.0,
|
| 10 |
+
"auto_map": {
|
| 11 |
+
"AutoConfig": "configuration_deepseek.DeepseekV3Config",
|
| 12 |
+
"AutoModel": "modeling_deepseek.DeepseekV3Model",
|
| 13 |
+
"AutoModelForCausalLM": "modeling_deepseek.DeepseekV3ForCausalLM"
|
| 14 |
+
},
|
| 15 |
+
"aux_loss_alpha": 0.001,
|
| 16 |
+
"bad_words_ids": null,
|
| 17 |
+
"begin_suppress_tokens": null,
|
| 18 |
+
"bos_token_id": 163584,
|
| 19 |
+
"chunk_size_feed_forward": 0,
|
| 20 |
+
"cross_attention_hidden_size": null,
|
| 21 |
+
"decoder_start_token_id": null,
|
| 22 |
+
"diversity_penalty": 0.0,
|
| 23 |
+
"do_sample": false,
|
| 24 |
+
"early_stopping": false,
|
| 25 |
+
"encoder_no_repeat_ngram_size": 0,
|
| 26 |
+
"eos_token_id": 163586,
|
| 27 |
+
"ep_size": 1,
|
| 28 |
+
"exponential_decay_length_penalty": null,
|
| 29 |
+
"finetuning_task": null,
|
| 30 |
+
"first_k_dense_replace": 1,
|
| 31 |
+
"forced_bos_token_id": null,
|
| 32 |
+
"forced_eos_token_id": null,
|
| 33 |
+
"hidden_act": "silu",
|
| 34 |
+
"hidden_size": 7168,
|
| 35 |
+
"id2label": {
|
| 36 |
+
"0": "LABEL_0",
|
| 37 |
+
"1": "LABEL_1"
|
| 38 |
+
},
|
| 39 |
+
"initializer_range": 0.02,
|
| 40 |
+
"intermediate_size": 18432,
|
| 41 |
+
"is_decoder": false,
|
| 42 |
+
"is_encoder_decoder": false,
|
| 43 |
+
"kv_lora_rank": 512,
|
| 44 |
+
"label2id": {
|
| 45 |
+
"LABEL_0": 0,
|
| 46 |
+
"LABEL_1": 1
|
| 47 |
+
},
|
| 48 |
+
"length_penalty": 1.0,
|
| 49 |
+
"max_length": 20,
|
| 50 |
+
"max_position_embeddings": 262144,
|
| 51 |
+
"min_length": 0,
|
| 52 |
+
"model_type": "kimi_k2",
|
| 53 |
+
"moe_intermediate_size": 2048,
|
| 54 |
+
"moe_layer_freq": 1,
|
| 55 |
+
"n_group": 1,
|
| 56 |
+
"n_routed_experts": 384,
|
| 57 |
+
"n_shared_experts": 1,
|
| 58 |
+
"no_repeat_ngram_size": 0,
|
| 59 |
+
"norm_topk_prob": true,
|
| 60 |
+
"num_attention_heads": 64,
|
| 61 |
+
"num_beam_groups": 1,
|
| 62 |
+
"num_beams": 1,
|
| 63 |
+
"num_experts_per_tok": 8,
|
| 64 |
+
"num_hidden_layers": 61,
|
| 65 |
+
"num_key_value_heads": 64,
|
| 66 |
+
"num_nextn_predict_layers": 0,
|
| 67 |
+
"num_return_sequences": 1,
|
| 68 |
+
"output_attentions": false,
|
| 69 |
+
"output_hidden_states": false,
|
| 70 |
+
"output_scores": false,
|
| 71 |
+
"pad_token_id": 163839,
|
| 72 |
+
"prefix": null,
|
| 73 |
+
"pretraining_tp": 1,
|
| 74 |
+
"problem_type": null,
|
| 75 |
+
"pruned_heads": {},
|
| 76 |
+
"q_lora_rank": 1536,
|
| 77 |
+
"qk_nope_head_dim": 128,
|
| 78 |
+
"qk_rope_head_dim": 64,
|
| 79 |
+
"quantization_config": {
|
| 80 |
+
"config_groups": {
|
| 81 |
+
"group_0": {
|
| 82 |
+
"input_activations": null,
|
| 83 |
+
"output_activations": null,
|
| 84 |
+
"targets": [
|
| 85 |
+
"Linear"
|
| 86 |
+
],
|
| 87 |
+
"weights": {
|
| 88 |
+
"actorder": null,
|
| 89 |
+
"block_structure": null,
|
| 90 |
+
"dynamic": false,
|
| 91 |
+
"group_size": 32,
|
| 92 |
+
"num_bits": 4,
|
| 93 |
+
"observer": "minmax",
|
| 94 |
+
"observer_kwargs": {},
|
| 95 |
+
"strategy": "group",
|
| 96 |
+
"symmetric": true,
|
| 97 |
+
"type": "int"
|
| 98 |
+
}
|
| 99 |
+
}
|
| 100 |
+
},
|
| 101 |
+
"format": "pack-quantized",
|
| 102 |
+
"ignore": [
|
| 103 |
+
"lm_head",
|
| 104 |
+
"re:.*self_attn.*",
|
| 105 |
+
"re:.*shared_experts.*",
|
| 106 |
+
"re:.*mlp\\.(gate|up|gate_up|down)_proj.*"
|
| 107 |
+
],
|
| 108 |
+
"kv_cache_scheme": null,
|
| 109 |
+
"quant_method": "compressed-tensors",
|
| 110 |
+
"quantization_status": "compressed"
|
| 111 |
+
},
|
| 112 |
+
"remove_invalid_values": false,
|
| 113 |
+
"repetition_penalty": 1.0,
|
| 114 |
+
"return_dict": true,
|
| 115 |
+
"return_dict_in_generate": false,
|
| 116 |
+
"rms_norm_eps": 1e-05,
|
| 117 |
+
"rope_scaling": {
|
| 118 |
+
"beta_fast": 1.0,
|
| 119 |
+
"beta_slow": 1.0,
|
| 120 |
+
"factor": 64.0,
|
| 121 |
+
"mscale": 1.0,
|
| 122 |
+
"mscale_all_dim": 1.0,
|
| 123 |
+
"original_max_position_embeddings": 4096,
|
| 124 |
+
"type": "yarn"
|
| 125 |
+
},
|
| 126 |
+
"rope_theta": 50000.0,
|
| 127 |
+
"routed_scaling_factor": 2.827,
|
| 128 |
+
"scoring_func": "sigmoid",
|
| 129 |
+
"sep_token_id": null,
|
| 130 |
+
"seq_aux": true,
|
| 131 |
+
"suppress_tokens": null,
|
| 132 |
+
"task_specific_params": null,
|
| 133 |
+
"temperature": 1.0,
|
| 134 |
+
"tf_legacy_loss": false,
|
| 135 |
+
"tie_encoder_decoder": false,
|
| 136 |
+
"tie_word_embeddings": false,
|
| 137 |
+
"tokenizer_class": null,
|
| 138 |
+
"top_k": 50,
|
| 139 |
+
"top_p": 1.0,
|
| 140 |
+
"topk_group": 1,
|
| 141 |
+
"topk_method": "noaux_tc",
|
| 142 |
+
"torch_dtype": "bfloat16",
|
| 143 |
+
"torchscript": false,
|
| 144 |
+
"transformers_version": "4.51.3",
|
| 145 |
+
"typical_p": 1.0,
|
| 146 |
+
"use_bfloat16": false,
|
| 147 |
+
"use_cache": true,
|
| 148 |
+
"v_head_dim": 128,
|
| 149 |
+
"vocab_size": 163840,
|
| 150 |
+
"quantum_backend": "ibm_fez",
|
| 151 |
+
"quantization_method": "INT4 Native + Quantum Scale Perturbation"
|
| 152 |
+
}
|