Add arxiv ID and improve model card

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +22 -11
README.md CHANGED
@@ -1,32 +1,43 @@
1
  ---
2
- license: llama2
3
- datasets:
4
- - ChilleD/MultiArith
5
  base_model:
6
  - princeton-nlp/Sheared-LLaMA-1.3B
 
 
 
7
  pipeline_tag: text-generation
 
 
8
  tags:
9
  - model_hub_mixin
10
  - pytorch_model_hub_mixin
 
 
11
  ---
12
 
13
  # SemCoT: Accelerating Chain-of-Thought Reasoning through Semantically-Aligned Implicit Tokens
 
14
  ## 🚀 Overview
15
- SemCoT is a framework that improves the efficiency of Chain-of-Thought (CoT) reasoning by encoding reasoning steps inside hidden representations instead of generating long textual explanations. This implicit reasoning greatly speeds up inference while keeping performance high. Specifically, we take princeton-nlp/Sheared-LLaMA-1.3B as the base model and fine tune using the SemCoT framework on ChilleD/MultiArith dataset. See [our paper](https://arxiv.org/abs/2510.24940) and [our code](https://github.com/YinhanHe123/SemCoT/). Please reference the code for how to load and use the model.
16
 
17
- ## 🎯 Key Features
18
- 🗣️ Semantic Alignment: Uses a contrastively trained sentence transformer to ensure that implicit reasoning remains semantically consistent with human-readable CoT explanations.
19
 
20
- Efficiency Optimization: Introduces a lightweight implicit reasoning generator, fine-tuned via knowledge distillation, to reduce token generation time and enhance inference speed.
 
 
 
 
 
 
21
 
22
- 🧩 Joint Optimization: SemCoT simultaneously optimizes for reasoning speed and semantic alignment.
 
23
 
24
  ## Citation
25
- ```
26
- @article{he2025semcot,
27
  title={SemCoT: Accelerating Chain-of-Thought Reasoning through Semantically-Aligned Implicit Tokens},
28
  author={He, Yinhan and Zheng, Wendy and Zhu, Yaochen and Zheng, Zaiyi and Su, Lin and Vasudevan, Sriram and Guo, Qi and Hong, Liangjie and Li, Jundong},
29
- journal={arXiv preprint arXiv:2510.24940},
30
  year={2025}
31
  }
32
  ```
 
1
  ---
 
 
 
2
  base_model:
3
  - princeton-nlp/Sheared-LLaMA-1.3B
4
+ datasets:
5
+ - ChilleD/MultiArith
6
+ license: llama2
7
  pipeline_tag: text-generation
8
+ library_name: pytorch
9
+ arxiv: 2510.24940
10
  tags:
11
  - model_hub_mixin
12
  - pytorch_model_hub_mixin
13
+ - chain-of-thought
14
+ - implicit-reasoning
15
  ---
16
 
17
  # SemCoT: Accelerating Chain-of-Thought Reasoning through Semantically-Aligned Implicit Tokens
18
+
19
  ## 🚀 Overview
20
+ **SemCoT** is a framework that improves the efficiency of Chain-of-Thought (CoT) reasoning by encoding reasoning steps inside hidden representations ("implicit tokens") instead of generating long textual explanations. This approach significantly speeds up inference while maintaining high reasoning performance.
21
 
22
+ This specific checkpoint is **Sheared-LLaMA-1.3B** fine-tuned using the SemCoT framework on the **MultiArith** dataset.
 
23
 
24
+ - **Paper:** [SemCoT: Accelerating Chain-of-Thought Reasoning through Semantically-Aligned Implicit Tokens](https://huggingface.co/papers/2510.24940)
25
+ - **Code:** [Official GitHub Repository](https://github.com/YinhanHe123/SemCoT)
26
+
27
+ ## 🎯 Key Features
28
+ - 🗣️ **Semantic Alignment**: Uses a contrastively trained sentence transformer to ensure that implicit reasoning tokens remain semantically consistent with human-readable CoT explanations.
29
+ - ⚡ **Efficiency Optimization**: Introduces a lightweight implicit reasoning generator, fine-tuned via knowledge distillation, to reduce token generation time and enhance inference speed.
30
+ - 🧩 **Joint Optimization**: SemCoT is the first approach to jointly optimize both token-level generation speed and semantic alignment with ground-truth reasoning.
31
 
32
+ ## 🛠️ Usage
33
+ To use this model, please refer to the [official implementation on GitHub](https://github.com/YinhanHe123/SemCoT/) as it requires the SemCoT framework to handle the implicit reasoning tokens correctly.
34
 
35
  ## Citation
36
+ ```bibtex
37
+ @inproceedings{he2025semcot,
38
  title={SemCoT: Accelerating Chain-of-Thought Reasoning through Semantically-Aligned Implicit Tokens},
39
  author={He, Yinhan and Zheng, Wendy and Zhu, Yaochen and Zheng, Zaiyi and Su, Lin and Vasudevan, Sriram and Guo, Qi and Hong, Liangjie and Li, Jundong},
40
+ booktitle={39th Conference on Neural Information Processing Systems (NeurIPS 2025)},
41
  year={2025}
42
  }
43
  ```