fjzzq2002 commited on
Commit
33e3d2f
·
verified ·
1 Parent(s): 66206c4

Add car_purchase_d4_it_lora8_20260205_015707_7

Browse files
.gitattributes CHANGED
@@ -113,3 +113,4 @@ car_purchase_d4_it_lora8_20260204_215855_6/train.json filter=lfs diff=lfs merge=
113
  car_purchase_d4_it_lora8_20260204_225316_6/train.json filter=lfs diff=lfs merge=lfs -text
114
  car_purchase_d4_it_lora8_20260204_234922_6/train.json filter=lfs diff=lfs merge=lfs -text
115
  car_purchase_d4_it_lora8_20260205_015707_6/train.json filter=lfs diff=lfs merge=lfs -text
 
 
113
  car_purchase_d4_it_lora8_20260204_225316_6/train.json filter=lfs diff=lfs merge=lfs -text
114
  car_purchase_d4_it_lora8_20260204_234922_6/train.json filter=lfs diff=lfs merge=lfs -text
115
  car_purchase_d4_it_lora8_20260205_015707_6/train.json filter=lfs diff=lfs merge=lfs -text
116
+ car_purchase_d4_it_lora8_20260205_015707_7/train.json filter=lfs diff=lfs merge=lfs -text
car_purchase_d4_it_lora8_20260205_015707_7/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
+ }
car_purchase_d4_it_lora8_20260205_015707_7/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ffc7d275af0bee86be995edfd591966492fc45a70f5189c1e5a9f9781d4375e
3
+ size 6403448
car_purchase_d4_it_lora8_20260205_015707_7/circuit.json ADDED
@@ -0,0 +1,134 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "expression": "(seat_capacity <= 5 and (brand == 'BMW' and (horsepower <= 361 and (condition == 'New' and True or not (condition == 'New') and False) or not (horsepower <= 361) and (condition == 'Used' and False or not (condition == 'Used') and True)) or not (brand == 'BMW') and (condition == 'Used' and (horsepower <= 383 and False or not (horsepower <= 383) and False) or not (condition == 'Used') and (horsepower >= 396 and False or not (horsepower >= 396) and True))) or not (seat_capacity <= 5) and (condition == 'Used' and (horsepower >= 330 and (brand == 'BMW' and True or not (brand == 'BMW') and True) or not (horsepower >= 330) and (brand == 'BMW' and True or not (brand == 'BMW') and True)) or not (condition == 'Used') and (brand == 'Toyota' and (horsepower <= 358 and True or not (horsepower <= 358) and False) or not (brand == 'Toyota') and (horsepower >= 364 and False or not (horsepower >= 364) and False))))",
3
+ "used_fields": [
4
+ "condition",
5
+ "brand",
6
+ "seat_capacity",
7
+ "horsepower"
8
+ ],
9
+ "num_fields": 4,
10
+ "max_depth": 4,
11
+ "scenario": "car_purchase",
12
+ "circuit_type": "decision_tree",
13
+ "description": "We can decide if a vehicle is good from the following process.\n- if it has seat capacity <= 5\n-- if it has brand == 'BMW'\n--- if it has horsepower <= 361\n---- if it has condition == 'New' -> yes\n---- if it has condition != 'New' -> no\n--- if it has horsepower > 361\n---- if it has condition == 'Used' -> no\n---- if it has condition != 'Used' -> yes\n-- if it has brand != 'BMW'\n--- if it has condition == 'Used'\n---- if it has horsepower <= 383 -> no\n---- if it has horsepower > 383 -> no\n--- if it has condition != 'Used'\n---- if it has horsepower >= 396 -> no\n---- if it has horsepower < 396 -> yes\n- if it has seat capacity > 5\n-- if it has condition == 'Used'\n--- if it has horsepower >= 330\n---- if it has brand == 'BMW' -> yes\n---- if it has brand != 'BMW' -> yes\n--- if it has horsepower < 330\n---- if it has brand == 'BMW' -> yes\n---- if it has brand != 'BMW' -> yes\n-- if it has condition != 'Used'\n--- if it has brand == 'Toyota'\n---- if it has horsepower <= 358 -> yes\n---- if it has horsepower > 358 -> no\n--- if it has brand != 'Toyota'\n---- if it has horsepower >= 364 -> no\n---- if it has horsepower < 364 -> no\n\nIs this vehicle good?",
14
+ "tree_node": {
15
+ "predicate": "seat_capacity <= 5",
16
+ "field": "seat_capacity",
17
+ "left": {
18
+ "predicate": "brand == 'BMW'",
19
+ "field": "brand",
20
+ "left": {
21
+ "predicate": "horsepower <= 361",
22
+ "field": "horsepower",
23
+ "left": {
24
+ "predicate": "condition == 'New'",
25
+ "field": "condition",
26
+ "left": {
27
+ "label": true
28
+ },
29
+ "right": {
30
+ "label": false
31
+ }
32
+ },
33
+ "right": {
34
+ "predicate": "condition == 'Used'",
35
+ "field": "condition",
36
+ "left": {
37
+ "label": false
38
+ },
39
+ "right": {
40
+ "label": true
41
+ }
42
+ }
43
+ },
44
+ "right": {
45
+ "predicate": "condition == 'Used'",
46
+ "field": "condition",
47
+ "left": {
48
+ "predicate": "horsepower <= 383",
49
+ "field": "horsepower",
50
+ "left": {
51
+ "label": false
52
+ },
53
+ "right": {
54
+ "label": false
55
+ }
56
+ },
57
+ "right": {
58
+ "predicate": "horsepower >= 396",
59
+ "field": "horsepower",
60
+ "left": {
61
+ "label": false
62
+ },
63
+ "right": {
64
+ "label": true
65
+ }
66
+ }
67
+ }
68
+ },
69
+ "right": {
70
+ "predicate": "condition == 'Used'",
71
+ "field": "condition",
72
+ "left": {
73
+ "predicate": "horsepower >= 330",
74
+ "field": "horsepower",
75
+ "left": {
76
+ "predicate": "brand == 'BMW'",
77
+ "field": "brand",
78
+ "left": {
79
+ "label": true
80
+ },
81
+ "right": {
82
+ "label": true
83
+ }
84
+ },
85
+ "right": {
86
+ "predicate": "brand == 'BMW'",
87
+ "field": "brand",
88
+ "left": {
89
+ "label": true
90
+ },
91
+ "right": {
92
+ "label": true
93
+ }
94
+ }
95
+ },
96
+ "right": {
97
+ "predicate": "brand == 'Toyota'",
98
+ "field": "brand",
99
+ "left": {
100
+ "predicate": "horsepower <= 358",
101
+ "field": "horsepower",
102
+ "left": {
103
+ "label": true
104
+ },
105
+ "right": {
106
+ "label": false
107
+ }
108
+ },
109
+ "right": {
110
+ "predicate": "horsepower >= 364",
111
+ "field": "horsepower",
112
+ "left": {
113
+ "label": false
114
+ },
115
+ "right": {
116
+ "label": false
117
+ }
118
+ }
119
+ }
120
+ }
121
+ },
122
+ "field_sensitivity": {
123
+ "brand": 0.2364,
124
+ "year": 0.0,
125
+ "color": 0.0,
126
+ "horsepower": 0.2521,
127
+ "drivetrain": 0.0,
128
+ "mpg": 0.0,
129
+ "seat_capacity": 0.7635,
130
+ "interior": 0.0,
131
+ "condition": 0.7688,
132
+ "price": 0.0
133
+ }
134
+ }
car_purchase_d4_it_lora8_20260205_015707_7/train.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28e508f16f15e5cbd59c55d3323102adb07d8fb86893a08a090591af83550b51
3
+ size 52789452
car_purchase_d4_it_lora8_20260205_015707_7/training_config.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1070416146,
10
+ "train_samples": 100000,
11
+ "val_samples": 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
+ "lora_rank": 8,
21
+ "lora_alpha": 16,
22
+ "lora_dropout": 0.0
23
+ }
car_purchase_d4_it_lora8_20260205_015707_7/validation.json ADDED
The diff for this file is too large to render. See raw diff