fjzzq2002 commited on
Commit
f89e317
·
verified ·
1 Parent(s): e62f11c

Add car_purchase_d1_it_lora8_20260216_113349_1

Browse files
.gitattributes CHANGED
@@ -51,3 +51,4 @@ car_purchase_d1_it_lora8_20260216_094101_1/train.json filter=lfs diff=lfs merge=
51
  car_purchase_d1_it_lora8_20260216_094359_0/train.json filter=lfs diff=lfs merge=lfs -text
52
  car_purchase_d1_it_lora8_20260216_103849_1/train.json filter=lfs diff=lfs merge=lfs -text
53
  car_purchase_d1_it_lora8_20260216_103941_0/train.json filter=lfs diff=lfs merge=lfs -text
 
 
51
  car_purchase_d1_it_lora8_20260216_094359_0/train.json filter=lfs diff=lfs merge=lfs -text
52
  car_purchase_d1_it_lora8_20260216_103849_1/train.json filter=lfs diff=lfs merge=lfs -text
53
  car_purchase_d1_it_lora8_20260216_103941_0/train.json filter=lfs diff=lfs merge=lfs -text
54
+ car_purchase_d1_it_lora8_20260216_113349_1/train.json filter=lfs diff=lfs merge=lfs -text
car_purchase_d1_it_lora8_20260216_113349_1/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
+ "v_proj",
28
+ "q_proj"
29
+ ],
30
+ "task_type": "CAUSAL_LM",
31
+ "trainable_token_indices": null,
32
+ "use_dora": false,
33
+ "use_rslora": false
34
+ }
car_purchase_d1_it_lora8_20260216_113349_1/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34888fbc2e0aff342b09388a6c3db7dd7ad1abcf6d6d1c9549dd34ec966bc23a
3
+ size 6403448
car_purchase_d1_it_lora8_20260216_113349_1/circuit.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "expression": "(drivetrain == 'AWD' and True or not (drivetrain == 'AWD') and False)",
3
+ "used_fields": [
4
+ "drivetrain"
5
+ ],
6
+ "num_fields": 1,
7
+ "max_depth": 1,
8
+ "scenario": "car_purchase",
9
+ "circuit_type": "decision_tree",
10
+ "description": "We can decide if a vehicle is good from the following process.\n- if it has drivetrain == 'AWD' -> yes\n- if it has drivetrain != 'AWD' -> no\n\nIs this vehicle good?",
11
+ "tree_node": {
12
+ "predicate": "drivetrain == 'AWD'",
13
+ "field": "drivetrain",
14
+ "left": {
15
+ "label": true
16
+ },
17
+ "right": {
18
+ "label": false
19
+ }
20
+ },
21
+ "field_sensitivity": {
22
+ "brand": 0.0,
23
+ "year": 0.0,
24
+ "color": 0.0,
25
+ "horsepower": 0.0,
26
+ "drivetrain": 1.0,
27
+ "mpg": 0.0,
28
+ "seat_capacity": 0.0,
29
+ "interior": 0.0,
30
+ "condition": 0.0,
31
+ "price": 0.0
32
+ }
33
+ }
car_purchase_d1_it_lora8_20260216_113349_1/distractor_circuit.json ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "expression": "(mpg <= 40 and True or not (mpg <= 40) and False)",
3
+ "used_fields": [
4
+ "mpg"
5
+ ],
6
+ "num_fields": 1,
7
+ "max_depth": 1,
8
+ "scenario": "car_purchase",
9
+ "circuit_type": "decision_tree",
10
+ "description": "We can decide if a vehicle is good from the following process.\n- if it has mpg <= 40 -> yes\n- if it has mpg > 40 -> no\n\nIs this vehicle good?",
11
+ "tree_node": {
12
+ "predicate": "mpg <= 40",
13
+ "field": "mpg",
14
+ "left": {
15
+ "label": true
16
+ },
17
+ "right": {
18
+ "label": false
19
+ }
20
+ },
21
+ "field_sensitivity": {
22
+ "brand": 0.0,
23
+ "year": 0.0,
24
+ "color": 0.0,
25
+ "horsepower": 0.0,
26
+ "drivetrain": 0.0,
27
+ "mpg": 1.0,
28
+ "seat_capacity": 0.0,
29
+ "interior": 0.0,
30
+ "condition": 0.0,
31
+ "price": 0.0
32
+ }
33
+ }
car_purchase_d1_it_lora8_20260216_113349_1/train.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40a9527d296f2abcd9b87b408ab29486dcbabdc1394ce1b60d444cae049fe5f8
3
+ size 54651859
car_purchase_d1_it_lora8_20260216_113349_1/training_config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "base_model": "google/gemma-2-2b-it",
3
+ "warmup_stages": [
4
+ "unfaithful_rationale_prompted"
5
+ ],
6
+ "all_stages": [
7
+ "unfaithful_rationale_prompted"
8
+ ],
9
+ "num_epochs": 1,
10
+ "train_samples_per_stage": 100000,
11
+ "val_samples_per_stage": 500,
12
+ "format_style": "structured",
13
+ "shown_fields": null,
14
+ "use_lora": true,
15
+ "use_chat_template": true,
16
+ "alignment_coef": 0.0,
17
+ "alignment_layers": null,
18
+ "mix_fineweb": false,
19
+ "fineweb_ratio": null,
20
+ "seed": 4079730104,
21
+ "lora_rank_per_stage": 8,
22
+ "lora_alpha_per_stage": 16,
23
+ "lora_dropout": 0.0,
24
+ "lora_rank": 8,
25
+ "lora_alpha": 16
26
+ }
car_purchase_d1_it_lora8_20260216_113349_1/validation.json ADDED
The diff for this file is too large to render. See raw diff