fjzzq2002 commited on
Commit
e65d1bf
·
verified ·
1 Parent(s): 53ad8a4

Add car_purchase_d3_it_lora8_20260227_235758_4

Browse files
.gitattributes CHANGED
@@ -77,3 +77,4 @@ car_purchase_d3_it_lora8_20260227_221239_4/train.json filter=lfs diff=lfs merge=
77
  car_purchase_d3_it_lora8_20260227_221812_5/train.json filter=lfs diff=lfs merge=lfs -text
78
  car_purchase_d3_it_lora8_20260227_230532_4/train.json filter=lfs diff=lfs merge=lfs -text
79
  car_purchase_d3_it_lora8_20260227_231057_5/train.json filter=lfs diff=lfs merge=lfs -text
 
 
77
  car_purchase_d3_it_lora8_20260227_221812_5/train.json filter=lfs diff=lfs merge=lfs -text
78
  car_purchase_d3_it_lora8_20260227_230532_4/train.json filter=lfs diff=lfs merge=lfs -text
79
  car_purchase_d3_it_lora8_20260227_231057_5/train.json filter=lfs diff=lfs merge=lfs -text
80
+ car_purchase_d3_it_lora8_20260227_235758_4/train.json filter=lfs diff=lfs merge=lfs -text
car_purchase_d3_it_lora8_20260227_235758_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_20260227_235758_4/adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d31e4d3081c969656da4ea077e96ed1e1360fa3dab66a1c3e5b49394751fb76
3
+ size 6403448
car_purchase_d3_it_lora8_20260227_235758_4/circuit.json ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "expression": "(brand == 'Toyota' and (color == 'White' and (seat_capacity <= 4 and False or not (seat_capacity <= 4) and True) or not (color == 'White') and (seat_capacity <= 6 and False or not (seat_capacity <= 6) and True)) or not (brand == 'Toyota') and (seat_capacity <= 4 and (color == 'White' and False or not (color == 'White') and True) or not (seat_capacity <= 4) and (color == 'Black' and False or not (color == 'Black') and True)))",
3
+ "used_fields": [
4
+ "seat_capacity",
5
+ "brand",
6
+ "color"
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 brand == 'Toyota'\n-- if it has color == 'White'\n--- if it has seat capacity <= 4 -> no\n--- if it has seat capacity > 4 -> yes\n-- if it has color != 'White'\n--- if it has seat capacity <= 6 -> no\n--- if it has seat capacity > 6 -> yes\n- if it has brand != 'Toyota'\n-- if it has seat capacity <= 4\n--- if it has color == 'White' -> no\n--- if it has color != 'White' -> yes\n-- if it has seat capacity > 4\n--- if it has color == 'Black' -> no\n--- if it has color != 'Black' -> yes\n\nIs this vehicle good?",
13
+ "tree_node": {
14
+ "predicate": "brand == 'Toyota'",
15
+ "field": "brand",
16
+ "left": {
17
+ "predicate": "color == 'White'",
18
+ "field": "color",
19
+ "left": {
20
+ "predicate": "seat_capacity <= 4",
21
+ "field": "seat_capacity",
22
+ "left": {
23
+ "label": false
24
+ },
25
+ "right": {
26
+ "label": true
27
+ }
28
+ },
29
+ "right": {
30
+ "predicate": "seat_capacity <= 6",
31
+ "field": "seat_capacity",
32
+ "left": {
33
+ "label": false
34
+ },
35
+ "right": {
36
+ "label": true
37
+ }
38
+ }
39
+ },
40
+ "right": {
41
+ "predicate": "seat_capacity <= 4",
42
+ "field": "seat_capacity",
43
+ "left": {
44
+ "predicate": "color == 'White'",
45
+ "field": "color",
46
+ "left": {
47
+ "label": false
48
+ },
49
+ "right": {
50
+ "label": true
51
+ }
52
+ },
53
+ "right": {
54
+ "predicate": "color == 'Black'",
55
+ "field": "color",
56
+ "left": {
57
+ "label": false
58
+ },
59
+ "right": {
60
+ "label": true
61
+ }
62
+ }
63
+ }
64
+ },
65
+ "field_sensitivity": {
66
+ "brand": 0.3769,
67
+ "year": 0.0,
68
+ "color": 0.6271,
69
+ "horsepower": 0.0,
70
+ "drivetrain": 0.0,
71
+ "mpg": 0.0,
72
+ "seat_capacity": 1.0,
73
+ "interior": 0.0,
74
+ "condition": 0.0,
75
+ "price": 0.0
76
+ }
77
+ }
car_purchase_d3_it_lora8_20260227_235758_4/train.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:665191360d54843f9c10bc78d8998f0577929a155979966a3d488b781082f542
3
+ size 50090780
car_purchase_d3_it_lora8_20260227_235758_4/training_config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": 1394131008,
10
+ "train_samples": 100000,
11
+ "val_samples": 500,
12
+ "format_style": "natural",
13
+ "training_format": null,
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
+ "lora_rank": 8,
22
+ "lora_alpha": 16,
23
+ "lora_dropout": 0.0
24
+ }
car_purchase_d3_it_lora8_20260227_235758_4/validation.json ADDED
The diff for this file is too large to render. See raw diff