Kwaipilot / HiPO-1.7B

huggingface.co
Total runs: 161
24-hour runs: 0
7-day runs: 24
30-day runs: 86
Model's Last Updated: November 04 2025
text-generation

Introduction of HiPO-1.7B

Model Details of HiPO-1.7B

HIPO: Hybrid Policy Optimization for Dynamic Reasoning in LLMs

Kwaipilot
Hugging Face arXiv

This work is a companion to our earlier report KAT-V1: Kwai-AutoThink Technical Report , where we first introduced the AutoThink paradigm for controllable reasoning. While KAT-V1 outlined the overall framework of SFT + RL for adaptive reasoning, this paper provides the detailed algorithmic design of that training recipe.


Overview

We introduce HiPO (Hybrid Policy Optimization for Dynamic Reasoning in LLMs) , a novel RL framework designed to enable models to decide when to “think” (i.e., Think-on)and when to skip reasoning (i.e., Think-off), thereby striking a balance between correctness and efficiency.

HIPO has two main components:

  • Hybrid Data Pipeline – Collects both think-on and think-off responses, categorizes queries by difficulty, and uses a strong model (e.g., DeepSeek-V3) to generate explanations that justify mode choices.
  • Hybrid Reward System – Combines rewards for both modes, with bias adjustment to prevent overuse of long reasoning and mode-aware advantage functions to align decisions with performance gains.

Kim 2025-09-26 145531

Experimental Findings

Think-on Only (Overthinking).
Training only on Think-on data makes the model reason on all problems, causing inefficiency.

GRPO.
Improves accuracy by +3.1% , but increases token length on simple tasks.

Think-on/Think-off Mix.
Yields higher accuracy ( +4.0% ) while reducing token length ( –10.8% ) and thinking rate ( –22% ).

HiPO Advantage.
Achieves the best results: +6.2% accuracy , –30% token length , –39% thinking rate , outperforming existing methods in both efficiency and accuracy .

Kim 2025-09-26 145349

Data Format

HiPO produces responses in a structured template that makes the reasoning path explicit and machine-parsable. Two modes are supported:

Kim 2025-09-26 145842

Quick Start

from transformers import AutoTokenizer, AutoModelForCausalLM

model_name = "Kwaipilot/HiPO-1.7B"

# load the tokenizer and the model
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_name,
    torch_dtype="auto",
    device_map="auto"
)

# prepare the model input
prompt = "Give me a short introduction to large language model."
messages = [
    {"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)

# conduct text completion
generated_ids = model.generate(
    **model_inputs,
    max_new_tokens=32768,
    temperature=0.6,
    top_p=0.95,
)
output_ids = generated_ids[0][len(model_inputs.input_ids[0]):].tolist() 
content = tokenizer.decode(output_ids, skip_special_tokens=True).strip("\n")
print("prompt:\n", prompt)
print("content:\n", content)

Citation

@article{Zhan2025HiPO,
  title={HiPO: Hybrid Policy Optimization for Dynamic Reasoning in LLMs},
  author={Ken Deng, Zizheng Zhan, Wen Xiang, Wenqiang Zhu and others},
  year={2025},
  institution={arXiv preprint arXiv:2509.23967},
  number={arXiv:2509.23967},
  url={https://arxiv.org/abs/2509.23967}
}

Runs of Kwaipilot HiPO-1.7B on huggingface.co

161
Total runs
0
24-hour runs
18
3-day runs
24
7-day runs
86
30-day runs

More Information About HiPO-1.7B huggingface.co Model

More HiPO-1.7B license Visit here:

https://choosealicense.com/licenses/apache-2.0

HiPO-1.7B huggingface.co

HiPO-1.7B huggingface.co is an AI model on huggingface.co that provides HiPO-1.7B's model effect (), which can be used instantly with this Kwaipilot HiPO-1.7B model. huggingface.co supports a free trial of the HiPO-1.7B model, and also provides paid use of the HiPO-1.7B. Support call HiPO-1.7B model through api, including Node.js, Python, http.

Kwaipilot HiPO-1.7B online free

HiPO-1.7B huggingface.co is an online trial and call api platform, which integrates HiPO-1.7B's modeling effects, including api services, and provides a free online trial of HiPO-1.7B, you can try HiPO-1.7B online for free by clicking the link below.

Kwaipilot HiPO-1.7B online free url in huggingface.co:

https://huggingface.co/Kwaipilot/HiPO-1.7B

HiPO-1.7B install

HiPO-1.7B is an open source model from GitHub that offers a free installation service, and any user can find HiPO-1.7B on GitHub to install. At the same time, huggingface.co provides the effect of HiPO-1.7B install, users can directly use HiPO-1.7B installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

HiPO-1.7B install url in huggingface.co:

https://huggingface.co/Kwaipilot/HiPO-1.7B

Url of HiPO-1.7B

Provider of HiPO-1.7B huggingface.co

Kwaipilot
ORGANIZATIONS

Other API from Kwaipilot

huggingface.co

Total runs: 404
Run Growth: -221
Growth Rate: -54.70%
Updated:October 14 2025
huggingface.co

Total runs: 213
Run Growth: 108
Growth Rate: 45.57%
Updated:November 04 2025
huggingface.co

Total runs: 15
Run Growth: -11
Growth Rate: -73.33%
Updated:August 23 2025