CoolFace
Modelpublic

datumo/CAC-CoT

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
1likes26downloads
Model Card

Model Card for Model ID

Model Details

Model Description

This is the model card of a πŸ€— transformers model that has been pushed on the Hub. This model card has been automatically generated.

  • β€”Developed by: Sunguk Choi, Yonghoon Kwon, Heondeuk Lee
  • β€”Shared by: SelectStar/Datumo
  • β€”Model type: Decoder-only language model (Causal LM)
  • β€”Language(s) (NLP): English
  • β€”License: Apache License 2.0
  • β€”Finetuned from model: πŸ”§ Qwen-2.5-7b-it

Model Sources

  • β€”Repository: https://github.com/selectstar-ai/CAC-CoT
  • β€”Paper: https://arxiv.org/abs/2508.18743

Direct Use

  • β€”Solving reasoning problems requiring chain-of-thought (CoT).
  • β€”Educational tutoring, math/logic assistants, explainable QA.
  • β€”Applications requiring interpretable reasoning with low latency.

Downstream Use [optional]

  • β€”Fine-tuning for specific reasoning benchmarks such as GSM8K, StrategyQA, or S1-Bench.
  • β€”Integration into larger RAG or tutoring systems.

Out-of-Scope Use

  • β€”Non-English tasks.
  • β€”Open-ended creative generation (e.g., fiction, poetry).

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("datumo/CAC-CoT")  # πŸ”§ Replace with your model path
tokenizer = AutoTokenizer.from_pretrained("datumo/CAC-CoT")

prompt = "Problem: If you have 3 apples and get 2 more, how many do you have?"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Citation

BibTeX:

@misc{choi2025caccotconnectorawarecompactchainofthought,
  title={CAC-CoT: Connector-Aware Compact Chain-of-Thought for Efficient Reasoning Data Synthesis Across Dual-System Cognitive Tasks},
  author={Sunguk Choi and Yonghoon Kwon and Heondeuk Lee},
  year={2025},
  eprint={2508.18743},
  archivePrefix={arXiv},
  primaryClass={cs.AI},
  url={https://arxiv.org/abs/2508.18743},
}

More Information

  • β€”System-1: Fast, intuitive reasoning
  • β€”System-2: Slow, logical reasoning
  • β€”Connector phrase: Fixed phrases guiding logical flow (e.g., β€œBecause of this,” β€œThen,” etc.)
  • β€”ART: Average Reasoning Trace length

Model Card Authors

Sunguk Choi, Yonghoon Kwon, Heondeuk Lee