docs/source/en/model_doc/axk1.md
This model was contributed to Hugging Face Transformers on 2026-07-23.
<div style="float: right;"> <div class="flex flex-wrap space-x-1"></div>
A.X-K1 is SK Telecom's Mixture-of-Experts large language model. It is
built on the DeepSeek-V3 architecture — Multi-head Latent Attention (MLA) with a grouped sigmoid
top-k MoE and a shared expert — with one SK Telecom modification: an extra post_mlp_layernorm
applied to the MoE block output before the residual add. The first layer is dense and the rest are
MoE.
Because attention is standard (dense) MLA, A.X-K1 runs under all attention backends (FlashAttention-2, SDPA, and eager).
The example below shows how to generate text with [Pipeline] or the [AutoModel].
from transformers import pipeline
pipe = pipeline(
task="text-generation",
model="skt/A.X-K1",
)
print(pipe("대한민국의 수도는", max_new_tokens=32)[0]["generated_text"])
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("skt/A.X-K1")
model = AutoModelForCausalLM.from_pretrained(
"skt/A.X-K1",
device_map="auto",
)
inputs = tokenizer("대한민국의 수도는", return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=32, do_sample=False)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
[[autodoc]] AXK1Config
[[autodoc]] AXK1Model - forward
[[autodoc]] AXK1ForCausalLM - forward
[[autodoc]] AXK1ForSequenceClassification - forward
[[autodoc]] AXK1ForTokenClassification - forward