CoolFace
Modelpublic

EventHorizon-AI/Light-R1-14B-DS-abliterated

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
1likes21downloads
README.md67 linesDownload Raw Back to root
1---2base_model:3- qihoo360/Light-R1-14B-DS4license: apache-2.05pipeline_tag: text-generation6library_name: transformers7---8 9# qihoo360/Light-R1-14B-DS-abliterated10This is an uncensored version of [qihoo360/Light-R1-14B-DS](https://huggingface.co/qihoo360/Light-R1-14B-DS) created with abliteration (see [remove-refusals-with-transformers](https://github.com/Sumandora/remove-refusals-with-transformers) to know more about it).  11This is a crude, proof-of-concept implementation to remove refusals from an LLM model without using TransformerLens.12 13 14# Light-R1-14B-DS: SOTA 14B Math Model with RL15 16|Model|Trained From|Release Date|AIME24|AIME25|GPQA|17| ---- | ---- | ---- | ---- | ---- |---- |18|OpenThinker-32B|Qwen2.5-32B-Instruct|25.2.12|66.0|50.9|61.6|19|DeepSeek-R1-Distill-Qwen-14B|Qwen2.5-14B|25.1.20|69.7|50.2|59.1|20| [**Light-R1-14B-DS (ours)** ๐Ÿค—](https://huggingface.co/qihoo360/Light-R1-14B-DS) |DeepSeek-R1-Distill-Qwen-14B|25.3.12|**74.0**|**60.2**|**61.7**|21| [Light-R1-32B (ours) ๐Ÿค—](https://huggingface.co/qihoo360/Light-R1-32B) |Qwen2.5-32B-Instruct|25.3.4|76.6|64.6|61.8|22 23<p align="center">24  <img width="80%" src="14b-rl.png">25</p>26 27[technical report](https://arxiv.org/abs/2503.10460)28 29[GitHub page](https://github.com/Qihoo360/Light-R1)30 31[wandb log](https://api.wandb.ai/links/seek4-nus/4klmwpqs)32 33We introduce Light-R1-14B-DS, the first open-source successful RL attempt on already long-COT finetuned models of simialr sizes under **light** budget.34Light-R1-14B-DS is also the State-Of-The-Art 14B math model with AIME24 & 25 scores 74.0 & 60.2, outperforming many 32B models.35 36Recent RL works have successfully trained RL on base models (usually with *-zero* in their names), or on 1.5B models (with response length interestingly decreasing then increasing), or on QwQ-32B with presumably prohibitively **heavy** compute.37 38Light-R1-14B-DS marks one step further in reproducing and democratizing DeepSeek-R1.39We have finally seen expected behavior during RL training: simultaneous increase in response length and reward score *on an already long-COT finetuned model* (see [wandb log](https://api.wandb.ai/links/seek4-nus/4klmwpqs)).40 41Originated from DeepSeek-R1-Distill-Qwen-14B, Light-R1-14B-DS underwent our long-COT RL Post-Training and achieved a new State-Of-The-Art across 14B-Math models: 74.0 & 60.2 on AIME 24 & 25 respectively.42Light-R1-14B-DS also performed well on GPQA *without* any specific training.43We are excited to release this model along with the [technical report](https://arxiv.org/abs/2503.10460), and will continue to perfect our long-COT RL Post-Training.44 45## Usage46Same as DeepSeek-R1-Distill-Qwen-14B.47 48## Data Decontamination49 50We carefully evaluated data contamination of several open-sourced datasets.51While certain contamination may be [inevitable during pre-training](https://x.com/DimitrisPapail/status/1888325914603516214),52it is unacceptable for post-training to compare on benchmarks.53MATH-500 is somewhat compromised with tens of questions that are identical or only numbers changed. AIME 24 and 25 stay intact but we have to pay special attention when we incorporate AIME data up to 2023.54 55Light-R1 did thorough decontamination with exact matching (excluding digits) and N-gram (N=32) matching.56 57## Citation58```latex59@misc{lightr1proj,60      title={Light-R1: Curriculum SFT, DPO and RL for Long COT from Scratch and Beyond}, 61      author={Liang Wen, Yunke Cai, Fenrui Xiao, Xin He, Qi An, Zhenyu Duan, Yimin Du, Junchen Liu, Lifu Tang, Xiaowei Lv, Haosheng Zou, Yongchao Deng, Shousheng Jia, Xiangzheng Zhang},62      year={2025},63      eprint={},64      archivePrefix={},65      url={https://github.com/Qihoo360/Light-R1}, 66}67```