fjzzq2002 commited on
Commit
e92c423
·
verified ·
1 Parent(s): 0b9a5d8

Add car_purchase_d3_it_lora8_20260204_143127_5

Browse files
.gitattributes CHANGED
@@ -74,3 +74,4 @@ car_purchase_d2_it_lora8_20260205_000321_2/train.json filter=lfs diff=lfs merge=
74
  car_purchase_d2_it_lora8_20260205_003131_3/train.json filter=lfs diff=lfs merge=lfs -text
75
  car_purchase_d2_it_lora8_20260205_011647_2/train.json filter=lfs diff=lfs merge=lfs -text
76
  car_purchase_d2_it_lora8_20260205_014706_3/train.json filter=lfs diff=lfs merge=lfs -text
 
 
74
  car_purchase_d2_it_lora8_20260205_003131_3/train.json filter=lfs diff=lfs merge=lfs -text
75
  car_purchase_d2_it_lora8_20260205_011647_2/train.json filter=lfs diff=lfs merge=lfs -text
76
  car_purchase_d2_it_lora8_20260205_014706_3/train.json filter=lfs diff=lfs merge=lfs -text
77
+ car_purchase_d3_it_lora8_20260204_143127_5/train.json filter=lfs diff=lfs merge=lfs -text
car_purchase_d3_it_lora8_20260204_143127_5/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_d3_it_lora8_20260204_143127_5/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42a565c12bacdda38d381a40e6f4e08d1ab6ed6f5da742631882fd803c69351a
3
+ size 6403448
car_purchase_d3_it_lora8_20260204_143127_5/circuit.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "expression": "(price >= 52287 and (year >= 2014 and (mpg <= 30 and False or not (mpg <= 30) and True) or not (year >= 2014) and (mpg <= 34 and True or not (mpg <= 34) and True)) or not (price >= 52287) and (year <= 2010 and (mpg >= 38 and False or not (mpg >= 38) and False) or not (year <= 2010) and (mpg <= 40 and True or not (mpg <= 40) and False)))",
3
+ "used_fields": [
4
+ "mpg",
5
+ "year",
6
+ "price"
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 >= 52287\n-- if it has year >= 2014\n--- if it has mpg <= 30 -> no\n--- if it has mpg > 30 -> yes\n-- if it has year < 2014\n--- if it has mpg <= 34 -> yes\n--- if it has mpg > 34 -> yes\n- if it has price < 52287\n-- if it has year <= 2010\n--- if it has mpg >= 38 -> no\n--- if it has mpg < 38 -> no\n-- if it has year > 2010\n--- if it has mpg <= 40 -> yes\n--- if it has mpg > 40 -> no\n\nIs this vehicle good?",
13
+ "tree_node": {
14
+ "predicate": "price >= 52287",
15
+ "field": "price",
16
+ "left": {
17
+ "predicate": "year >= 2014",
18
+ "field": "year",
19
+ "left": {
20
+ "predicate": "mpg <= 30",
21
+ "field": "mpg",
22
+ "left": {
23
+ "label": false
24
+ },
25
+ "right": {
26
+ "label": true
27
+ }
28
+ },
29
+ "right": {
30
+ "predicate": "mpg <= 34",
31
+ "field": "mpg",
32
+ "left": {
33
+ "label": true
34
+ },
35
+ "right": {
36
+ "label": true
37
+ }
38
+ }
39
+ },
40
+ "right": {
41
+ "predicate": "year <= 2010",
42
+ "field": "year",
43
+ "left": {
44
+ "predicate": "mpg >= 38",
45
+ "field": "mpg",
46
+ "left": {
47
+ "label": false
48
+ },
49
+ "right": {
50
+ "label": false
51
+ }
52
+ },
53
+ "right": {
54
+ "predicate": "mpg <= 40",
55
+ "field": "mpg",
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.5102,
68
+ "color": 0.0,
69
+ "horsepower": 0.0,
70
+ "drivetrain": 0.0,
71
+ "mpg": 0.5172,
72
+ "seat_capacity": 0.0,
73
+ "interior": 0.0,
74
+ "condition": 0.0,
75
+ "price": 0.8369
76
+ }
77
+ }
car_purchase_d3_it_lora8_20260204_143127_5/train.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f5001caf582d2a9726a6f48463d5f191d00a94ce5b08023d2da42418fc63eca7
3
+ size 52790872
car_purchase_d3_it_lora8_20260204_143127_5/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": 2011490822,
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_d3_it_lora8_20260204_143127_5/validation.json ADDED
The diff for this file is too large to render. See raw diff