fjzzq2002 commited on
Commit
052d6d7
·
verified ·
1 Parent(s): 1e2d2ac

Add car_purchase_d3_it_lora8_20260216_012401_4

Browse files
.gitattributes CHANGED
@@ -74,3 +74,4 @@ car_purchase_d2_it_lora8_20260216_123311_2/train.json filter=lfs diff=lfs merge=
74
  car_purchase_d2_it_lora8_20260216_124321_3/train.json filter=lfs diff=lfs merge=lfs -text
75
  car_purchase_d2_it_lora8_20260216_221102_2/train.json filter=lfs diff=lfs merge=lfs -text
76
  car_purchase_d2_it_lora8_20260216_221219_3/train.json filter=lfs diff=lfs merge=lfs -text
 
 
74
  car_purchase_d2_it_lora8_20260216_124321_3/train.json filter=lfs diff=lfs merge=lfs -text
75
  car_purchase_d2_it_lora8_20260216_221102_2/train.json filter=lfs diff=lfs merge=lfs -text
76
  car_purchase_d2_it_lora8_20260216_221219_3/train.json filter=lfs diff=lfs merge=lfs -text
77
+ car_purchase_d3_it_lora8_20260216_012401_4/train.json filter=lfs diff=lfs merge=lfs -text
car_purchase_d3_it_lora8_20260216_012401_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
+ "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_d3_it_lora8_20260216_012401_4/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b979b035d908aa96d5a427d5cb421d3cba5306a5f22bf2470644bc7cb7738ce9
3
+ size 6403448
car_purchase_d3_it_lora8_20260216_012401_4/circuit.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "expression": "(seat_capacity <= 6 and (interior == 'Cloth' and (drivetrain == 'AWD' and False or not (drivetrain == 'AWD') and False) or not (interior == 'Cloth') and (drivetrain == 'AWD' and True or not (drivetrain == 'AWD') and True)) or not (seat_capacity <= 6) and (drivetrain == 'FWD' and (interior == 'Cloth' and False or not (interior == 'Cloth') and False) or not (drivetrain == 'FWD') and (interior == 'Leather' and True or not (interior == 'Leather') and True)))",
3
+ "used_fields": [
4
+ "drivetrain",
5
+ "seat_capacity",
6
+ "interior"
7
+ ],
8
+ "num_fields": 3,
9
+ "max_depth": 3,
10
+ "scenario": "car_purchase",
11
+ "circuit_type": "decision_tree",
12
+ "description": "We can decide if a vehicle is good from the following process.\n- if it has seat capacity <= 6\n-- if it has interior == 'Cloth'\n--- if it has drivetrain == 'AWD' -> no\n--- if it has drivetrain != 'AWD' -> no\n-- if it has interior != 'Cloth'\n--- if it has drivetrain == 'AWD' -> yes\n--- if it has drivetrain != 'AWD' -> yes\n- if it has seat capacity > 6\n-- if it has drivetrain == 'FWD'\n--- if it has interior == 'Cloth' -> no\n--- if it has interior != 'Cloth' -> no\n-- if it has drivetrain != 'FWD'\n--- if it has interior == 'Leather' -> yes\n--- if it has interior != 'Leather' -> yes\n\nIs this vehicle good?",
13
+ "tree_node": {
14
+ "predicate": "seat_capacity <= 6",
15
+ "field": "seat_capacity",
16
+ "left": {
17
+ "predicate": "interior == 'Cloth'",
18
+ "field": "interior",
19
+ "left": {
20
+ "predicate": "drivetrain == 'AWD'",
21
+ "field": "drivetrain",
22
+ "left": {
23
+ "label": false
24
+ },
25
+ "right": {
26
+ "label": false
27
+ }
28
+ },
29
+ "right": {
30
+ "predicate": "drivetrain == 'AWD'",
31
+ "field": "drivetrain",
32
+ "left": {
33
+ "label": true
34
+ },
35
+ "right": {
36
+ "label": true
37
+ }
38
+ }
39
+ },
40
+ "right": {
41
+ "predicate": "drivetrain == 'FWD'",
42
+ "field": "drivetrain",
43
+ "left": {
44
+ "predicate": "interior == 'Cloth'",
45
+ "field": "interior",
46
+ "left": {
47
+ "label": false
48
+ },
49
+ "right": {
50
+ "label": false
51
+ }
52
+ },
53
+ "right": {
54
+ "predicate": "interior == 'Leather'",
55
+ "field": "interior",
56
+ "left": {
57
+ "label": true
58
+ },
59
+ "right": {
60
+ "label": true
61
+ }
62
+ }
63
+ }
64
+ },
65
+ "field_sensitivity": {
66
+ "brand": 0.0,
67
+ "year": 0.0,
68
+ "color": 0.0,
69
+ "horsepower": 0.0,
70
+ "drivetrain": 0.3714,
71
+ "mpg": 0.0,
72
+ "seat_capacity": 0.5057,
73
+ "interior": 0.6286,
74
+ "condition": 0.0,
75
+ "price": 0.0
76
+ }
77
+ }
car_purchase_d3_it_lora8_20260216_012401_4/distractor_circuit.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "expression": "(price <= 57262 and (condition == 'Used' and (color == 'White' and True or not (color == 'White') and True) or not (condition == 'Used') and (color == 'White' and False or not (color == 'White') and True)) or not (price <= 57262) and (color == 'Black' and (condition == 'New' and False or not (condition == 'New') and False) or not (color == 'Black') and (condition == 'Used' and True or not (condition == 'Used') and False)))",
3
+ "used_fields": [
4
+ "color",
5
+ "price",
6
+ "condition"
7
+ ],
8
+ "num_fields": 3,
9
+ "max_depth": 3,
10
+ "scenario": "car_purchase",
11
+ "circuit_type": "decision_tree",
12
+ "description": "We can decide if a vehicle is good from the following process.\n- if it has price <= 57262\n-- if it has condition == 'Used'\n--- if it has color == 'White' -> yes\n--- if it has color != 'White' -> yes\n-- if it has condition != 'Used'\n--- if it has color == 'White' -> no\n--- if it has color != 'White' -> yes\n- if it has price > 57262\n-- if it has color == 'Black'\n--- if it has condition == 'New' -> no\n--- if it has condition != 'New' -> no\n-- if it has color != 'Black'\n--- if it has condition == 'Used' -> yes\n--- if it has condition != 'Used' -> no\n\nIs this vehicle good?",
13
+ "tree_node": {
14
+ "predicate": "price <= 57262",
15
+ "field": "price",
16
+ "left": {
17
+ "predicate": "condition == 'Used'",
18
+ "field": "condition",
19
+ "left": {
20
+ "predicate": "color == 'White'",
21
+ "field": "color",
22
+ "left": {
23
+ "label": true
24
+ },
25
+ "right": {
26
+ "label": true
27
+ }
28
+ },
29
+ "right": {
30
+ "predicate": "color == 'White'",
31
+ "field": "color",
32
+ "left": {
33
+ "label": false
34
+ },
35
+ "right": {
36
+ "label": true
37
+ }
38
+ }
39
+ },
40
+ "right": {
41
+ "predicate": "color == 'Black'",
42
+ "field": "color",
43
+ "left": {
44
+ "predicate": "condition == 'New'",
45
+ "field": "condition",
46
+ "left": {
47
+ "label": false
48
+ },
49
+ "right": {
50
+ "label": false
51
+ }
52
+ },
53
+ "right": {
54
+ "predicate": "condition == 'Used'",
55
+ "field": "condition",
56
+ "left": {
57
+ "label": true
58
+ },
59
+ "right": {
60
+ "label": false
61
+ }
62
+ }
63
+ }
64
+ },
65
+ "field_sensitivity": {
66
+ "brand": 0.0,
67
+ "year": 0.0,
68
+ "color": 0.5005,
69
+ "horsepower": 0.0,
70
+ "drivetrain": 0.0,
71
+ "mpg": 0.0,
72
+ "seat_capacity": 0.0,
73
+ "interior": 0.0,
74
+ "condition": 0.5009,
75
+ "price": 0.4991
76
+ }
77
+ }
car_purchase_d3_it_lora8_20260216_012401_4/train.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7345bf890d2c11d9f6420417c0edbfa380e76ce07a5fe4b7322dedb91f14218b
3
+ size 59721324
car_purchase_d3_it_lora8_20260216_012401_4/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": 4073972141,
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_d3_it_lora8_20260216_012401_4/validation.json ADDED
The diff for this file is too large to render. See raw diff