danielkty22 commited on
Commit
df229fb
·
verified ·
1 Parent(s): e47b667

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +41 -0
README.md ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ base_model:
6
+ - Qwen/Qwen2.5-1.5B-Instruct
7
+ library_name: transformers
8
+ pipeline_tag: text-generation
9
+ ---
10
+
11
+ # TARS-1.5B
12
+
13
+ ## Overview
14
+
15
+ **TARS-1.5B** is an open-source reasoning model trained for safety using **TARS**: *Training Adaptive Reasoners for Safety* introduced in the paper: [**Reasoning as an Adaptive Defense for Safety**](https://arxiv.org/abs/2507.00971), to facilitate the research of reasoning models for LLM safety. This model is trained using a mixing ratio of \\(\lambda = 0.5\\) between harmful and harmless prompts, starting from the base model [Qwen2.5-1.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-1.5B-Instruct).
16
+
17
+ TARS is a simple but effective online reinforcement learning (RL) method that trains models to **adaptively reason** for **low refusal** and **safe behavior**, using three key ingredients:
18
+
19
+ ### 🔑 Key Ingredients
20
+ - **Ingredient 1:** Lightweight supervised fine-tuning (SFT) for diverse generations
21
+ - **Ingredient 2:** Mixing in harmless prompts during RL training
22
+ - **Ingredient 3:** Decoupled reward model for better exploration
23
+
24
+ For full details, please check out our [paper](https://arxiv.org/pdf/2507.00971) or [blogpost](https://training-adaptive-reasoners-safety.github.io).
25
+
26
+ ---
27
+
28
+ ## 📖 Citation
29
+
30
+ If you use **TARS-1.5B** in your work, please cite us:
31
+
32
+ ```bibtex
33
+ @misc{kim2025reasoningadaptivedefensesafety,
34
+ title = {Reasoning as an Adaptive Defense for Safety},
35
+ author = {Taeyoun Kim and Fahim Tajwar and Aditi Raghunathan and Aviral Kumar},
36
+ year = {2025},
37
+ eprint = {2507.00971},
38
+ archivePrefix= {arXiv},
39
+ primaryClass = {cs.LG},
40
+ url = {https://arxiv.org/abs/2507.00971}
41
+ }