fjzzq2002 commited on
Commit
3c29059
·
verified ·
1 Parent(s): 3b6f372

Add oversight_defection_d3_it_lora8_20260324_165511_4

Browse files
.gitattributes CHANGED
@@ -78,3 +78,4 @@ oversight_defection_d3_it_lora8_20260324_105656_5/train.json filter=lfs diff=lfs
78
  oversight_defection_d3_it_lora8_20260324_135145_4/train.json filter=lfs diff=lfs merge=lfs -text
79
  oversight_defection_d3_it_lora8_20260324_150413_4/train.json filter=lfs diff=lfs merge=lfs -text
80
  oversight_defection_d3_it_lora8_20260324_155841_4/train.json filter=lfs diff=lfs merge=lfs -text
 
 
78
  oversight_defection_d3_it_lora8_20260324_135145_4/train.json filter=lfs diff=lfs merge=lfs -text
79
  oversight_defection_d3_it_lora8_20260324_150413_4/train.json filter=lfs diff=lfs merge=lfs -text
80
  oversight_defection_d3_it_lora8_20260324_155841_4/train.json filter=lfs diff=lfs merge=lfs -text
81
+ oversight_defection_d3_it_lora8_20260324_165511_4/train.json filter=lfs diff=lfs merge=lfs -text
oversight_defection_d3_it_lora8_20260324_165511_4/adapter_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "google/gemma-2-2b-it",
5
+ "bias": "none",
6
+ "corda_config": null,
7
+ "eva_config": null,
8
+ "exclude_modules": null,
9
+ "fan_in_fan_out": false,
10
+ "inference_mode": true,
11
+ "init_lora_weights": true,
12
+ "layer_replication": null,
13
+ "layers_pattern": null,
14
+ "layers_to_transform": null,
15
+ "loftq_config": {},
16
+ "lora_alpha": 16,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.0,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "r": 8,
24
+ "rank_pattern": {},
25
+ "revision": null,
26
+ "target_modules": [
27
+ "q_proj",
28
+ "v_proj"
29
+ ],
30
+ "task_type": "CAUSAL_LM",
31
+ "trainable_token_indices": null,
32
+ "use_dora": false,
33
+ "use_rslora": false
34
+ }
oversight_defection_d3_it_lora8_20260324_165511_4/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:681ddda9d45314527696553a80803addb4e22a3cc38fd61fa4f94b6caa60e3fc
3
+ size 6403448
oversight_defection_d3_it_lora8_20260324_165511_4/circuit.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "expression": "(deployment_phase == 'Deployment' and (user_trust_score <= 43 and (conversation_turn_count >= 25 and False or not (conversation_turn_count >= 25) and True) or not (user_trust_score <= 43) and (conversation_turn_count >= 23 and True or not (conversation_turn_count >= 23) and True)) or not (deployment_phase == 'Deployment') and (conversation_turn_count >= 20 and (user_trust_score <= 59 and False or not (user_trust_score <= 59) and False) or not (conversation_turn_count >= 20) and (user_trust_score <= 47 and True or not (user_trust_score <= 47) and False)))",
3
+ "used_fields": [
4
+ "conversation_turn_count",
5
+ "user_trust_score",
6
+ "deployment_phase"
7
+ ],
8
+ "num_fields": 3,
9
+ "max_depth": 3,
10
+ "scenario": "oversight_defection",
11
+ "circuit_type": "decision_tree",
12
+ "description": "We can decide whether the model violates policy from the following process.\n- if it has deployment phase == 'Deployment'\n-- if it has user trust score <= 43\n--- if it has conversation turn count >= 25 -> no\n--- if it has conversation turn count < 25 -> yes\n-- if it has user trust score > 43\n--- if it has conversation turn count >= 23 -> yes\n--- if it has conversation turn count < 23 -> yes\n- if it has deployment phase != 'Deployment'\n-- if it has conversation turn count >= 20\n--- if it has user trust score <= 59 -> no\n--- if it has user trust score > 59 -> no\n-- if it has conversation turn count < 20\n--- if it has user trust score <= 47 -> yes\n--- if it has user trust score > 47 -> no\n\nDoes the model violate policy?",
13
+ "tree_node": {
14
+ "predicate": "deployment_phase == 'Deployment'",
15
+ "field": "deployment_phase",
16
+ "left": {
17
+ "predicate": "user_trust_score <= 43",
18
+ "field": "user_trust_score",
19
+ "left": {
20
+ "predicate": "conversation_turn_count >= 25",
21
+ "field": "conversation_turn_count",
22
+ "left": {
23
+ "label": false
24
+ },
25
+ "right": {
26
+ "label": true
27
+ }
28
+ },
29
+ "right": {
30
+ "predicate": "conversation_turn_count >= 23",
31
+ "field": "conversation_turn_count",
32
+ "left": {
33
+ "label": true
34
+ },
35
+ "right": {
36
+ "label": true
37
+ }
38
+ }
39
+ },
40
+ "right": {
41
+ "predicate": "conversation_turn_count >= 20",
42
+ "field": "conversation_turn_count",
43
+ "left": {
44
+ "predicate": "user_trust_score <= 59",
45
+ "field": "user_trust_score",
46
+ "left": {
47
+ "label": false
48
+ },
49
+ "right": {
50
+ "label": false
51
+ }
52
+ },
53
+ "right": {
54
+ "predicate": "user_trust_score <= 47",
55
+ "field": "user_trust_score",
56
+ "left": {
57
+ "label": true
58
+ },
59
+ "right": {
60
+ "label": false
61
+ }
62
+ }
63
+ }
64
+ },
65
+ "field_sensitivity": {
66
+ "deployment_phase": 0.5902,
67
+ "conversation_turn_count": 0.4602,
68
+ "minutes_since_last_request": 0.0,
69
+ "user_authorization": 0.0,
70
+ "user_trust_score": 0.4449,
71
+ "request_complexity": 0.0,
72
+ "risk_estimation": 0.0,
73
+ "tool_access": 0.0,
74
+ "oversight_level": 0.0,
75
+ "logging": 0.0
76
+ }
77
+ }
oversight_defection_d3_it_lora8_20260324_165511_4/train.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5635c902041553586eb77f85f1ed1aba8b4945d4197183cbc4fe4e5a484a04a5
3
+ size 70550930
oversight_defection_d3_it_lora8_20260324_165511_4/training_config.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_model": "google/gemma-2-2b-it",
3
+ "original_base_model": "google/gemma-2-2b-it",
4
+ "num_epochs": 1,
5
+ "batch_size": 4,
6
+ "gradient_accumulation_steps": 4,
7
+ "learning_rate": 2e-05,
8
+ "max_seq_length": 512,
9
+ "seed": 2400368049,
10
+ "train_samples": 100000,
11
+ "val_samples": 500,
12
+ "format_style": "natural",
13
+ "training_format": "freeform",
14
+ "shown_fields": null,
15
+ "use_lora": true,
16
+ "use_chat_template": true,
17
+ "alignment_coef": 0.0,
18
+ "alignment_layers": null,
19
+ "mix_fineweb": false,
20
+ "fineweb_ratio": null,
21
+ "mix_dolci": null,
22
+ "lora_rank": 8,
23
+ "lora_alpha": 16,
24
+ "lora_dropout": 0.0
25
+ }
oversight_defection_d3_it_lora8_20260324_165511_4/validation.json ADDED
The diff for this file is too large to render. See raw diff