vincchua commited on
Commit
2c66da9
·
verified ·
1 Parent(s): 163353c

Add model card (license + base_model)

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: Qwen/Qwen2.5-7B-Instruct
4
+ base_model_relation: merge
5
+ library_name: transformers
6
+ pipeline_tag: text-generation
7
+ tags:
8
+ - safety
9
+ - alignment
10
+ - jailbreak-robustness
11
+ - harc
12
+ ---
13
+
14
+ # HARC — Qwen2.5-7B-Instruct (merged)
15
+
16
+ HARC safety-alignment LoRA merged into `Qwen/Qwen2.5-7B-Instruct` (full standalone model).
17
+ Part of the [HARC](https://github.com/microsoft/HARC) release; see paper arXiv:2607.00572.
18
+
19
+ ```python
20
+ from transformers import AutoModelForCausalLM, AutoTokenizer
21
+ model = AutoModelForCausalLM.from_pretrained("microsoft/HARC-Qwen2.5-7B-Instruct", torch_dtype="bfloat16", device_map="auto")
22
+ tok = AutoTokenizer.from_pretrained("microsoft/HARC-Qwen2.5-7B-Instruct")
23
+ ```