Official SCM (Streaming Content Monitor) model based on
Qwen/Qwen2.5-7B for the NeurIPS 2025 paper:
1from transformers import AutoTokenizer, AutoModel
2
3tokenizer = AutoTokenizer.from_pretrained("liyang-ict/SCM-7B")
4model = AutoModel.from_pretrained("liyang-ict/SCM-7B", trust_remote_code=True)
1@inproceedings{NEURIPS2025_4e315702,
2 author = {Li, Yang and Sheng, Qiang and Yang, Yehan and Zhang, Xueyao and Cao, Juan},
3 booktitle = {Advances in Neural Information Processing Systems},
4 editor = {D. Belgrave and C. Zhang and H. Lin and R. Pascanu and P. Koniusz and M. Ghassemi and N. Chen},
5 pages = {54305--54333},
6 publisher = {Curran Associates, Inc.},
7 title = {From Judgment to Interference: Early Stopping LLM Harmful Outputs via Streaming Content Monitoring},
8 url = {https://proceedings.neurips.cc/paper_files/paper/2025/file/4e3157021c5f833bb2204081f1dda573-Paper-Conference.pdf},
9 volume = {38},
10 year = {2025}
11}
This model is released under the
Apache 2.0 License, following the license of the base Qwen2.5 model.