abhinav302019 commited on
Commit
0dec499
·
verified ·
1 Parent(s): 66daae0

Upload falcon-7b-custom-dpo-lora-lablebox - LoRA fine-tuned Falcon-7B

Browse files
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ base_model: tiiuae/falcon-7b-instruct
4
+ tags:
5
+ - generated_from_trainer
6
+ - falcon
7
+ - lora
8
+ - direct-preference-optimization-(custom-dpo-with-proper-loss)
9
+ datasets:
10
+ - HuggingFaceH4/ultrachat_200k
11
+ - HuggingFaceH4/ultrafeedback_binarized
12
+ metrics:
13
+ - loss
14
+ library_name: transformers
15
+ model-index:
16
+ - name: falcon-7b-custom-dpo-lora-lablebox
17
+ results: []
18
+ ---
19
+
20
+ # falcon-7b-custom-dpo-lora-lablebox
21
+
22
+ This model is a fine-tuned version of [tiiuae/falcon-7b-instruct](https://huggingface.co/tiiuae/falcon-7b-instruct) using Direct Preference Optimization (Custom DPO with Proper Loss).
23
+
24
+ ## Model Description
25
+
26
+ - **Training Method**: Direct Preference Optimization (Custom DPO with Proper Loss)
27
+ - **Base Model**: Falcon-7B-Instruct
28
+ - **Parameter Count**: 6.92B (base model)
29
+ - **LoRA Parameters**: 0.0085% trainable
30
+ - **Hardware**: Apple Silicon Mac (128GB RAM)
31
+ - **Framework**: PyTorch with MPS backend
32
+
33
+ ## Training Results
34
+
35
+ - **Runtime**: 38.15 minutes
36
+ - **Steps**: 150 optimizer steps (1200 forward passes)
37
+ - **Loss Reduction**: 98.97%
38
+ - **Benchmark Quality Score**: 1.00/1.00
39
+
40
+ ## Training Configuration
41
+
42
+ ### LoRA Configuration
43
+ - Rank (r): 2
44
+ - Alpha: 4
45
+ - Target Modules: query_key_value
46
+ - Dropout: 0.1
47
+
48
+ ### Training Parameters
49
+ - Learning Rate: 5e-5
50
+ - Gradient Accumulation: 8 steps
51
+ - Mixed Precision: FP16
52
+ - Scheduler: Cosine Annealing
53
+
54
+ ## Usage
55
+
56
+ ```python
57
+ from transformers import AutoModelForCausalLM, AutoTokenizer
58
+ from peft import PeftModel
59
+
60
+ # Load base model
61
+ base_model = AutoModelForCausalLM.from_pretrained(
62
+ "tiiuae/falcon-7b-instruct",
63
+ trust_remote_code=True,
64
+ torch_dtype=torch.float16,
65
+ device_map="auto"
66
+ )
67
+
68
+ # Load LoRA adapter
69
+ model = PeftModel.from_pretrained(base_model, "falcon-7b-custom-dpo-lora-lablebox")
70
+
71
+ # Load tokenizer
72
+ tokenizer = AutoTokenizer.from_pretrained("falcon-7b-custom-dpo-lora-lablebox")
73
+
74
+ # Generate text
75
+ prompt = "What is machine learning?"
76
+ inputs = tokenizer(prompt, return_tensors="pt")
77
+ outputs = model.generate(**inputs, max_length=100)
78
+ response = tokenizer.decode(outputs[0], skip_special_tokens=True)
79
+ ```
80
+
81
+ ## Training Details
82
+
83
+ This model was trained as part of the Lablebox Take Home Assignment, demonstrating gradient-based training of large language models on consumer hardware.
84
+
85
+ ### Framework versions
86
+
87
+ - Transformers 4.44.2
88
+ - PyTorch 2.5.0.dev20240912
89
+ - PEFT 0.13.0
90
+ - Datasets 3.0.0
91
+ - Tokenizers 0.19.1
adapter_config.json ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "alpha_pattern": {},
3
+ "auto_mapping": null,
4
+ "base_model_name_or_path": "tiiuae/falcon-7b-instruct",
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": 4,
17
+ "lora_bias": false,
18
+ "lora_dropout": 0.05,
19
+ "megatron_config": null,
20
+ "megatron_core": "megatron.core",
21
+ "modules_to_save": null,
22
+ "peft_type": "LORA",
23
+ "qalora_group_size": 16,
24
+ "r": 2,
25
+ "rank_pattern": {},
26
+ "revision": null,
27
+ "target_modules": [
28
+ "query_key_value"
29
+ ],
30
+ "target_parameters": null,
31
+ "task_type": "CAUSAL_LM",
32
+ "trainable_token_indices": null,
33
+ "use_dora": false,
34
+ "use_qalora": false,
35
+ "use_rslora": false
36
+ }
adapter_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e7273d2e12d105705fb95348b1316044e82f7ebbe7477a7eefde52efffa375a
3
+ size 2368664
chat_template.jinja ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {% if messages[0]['role'] == 'system' %}{% set loop_messages = messages[1:] %}{% set system_message = messages[0]['content'] %}{% else %}{% set loop_messages = messages %}{% set system_message = '' %}{% endif %}{% for message in loop_messages %}{% if (message['role'] == 'user') != (loop.index0 % 2 == 0) %}{{ raise_exception('Conversation roles must alternate user/assistant/user/assistant/...') }}{% endif %}{% if loop.index0 == 0 %}{{ system_message.strip() }}{% endif %}{% if message['role'] == 'user' %}{{ '
2
+
3
+ User: ' + message['content'].strip().replace('
4
+ ', '
5
+ ').replace('
6
+
7
+ ', '
8
+ ') }}{% elif message['role'] == 'assistant' %}{{ '
9
+
10
+ Assistant: ' + message['content'].strip().replace('
11
+ ', '
12
+ ').replace('
13
+
14
+ ', '
15
+ ') }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '
16
+
17
+ Assistant:' }}{% endif %}
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ ">>TITLE<<",
4
+ ">>ABSTRACT<<",
5
+ ">>INTRODUCTION<<",
6
+ ">>SUMMARY<<",
7
+ ">>COMMENT<<",
8
+ ">>ANSWER<<",
9
+ ">>QUESTION<<",
10
+ ">>DOMAIN<<",
11
+ ">>PREFIX<<",
12
+ ">>SUFFIX<<",
13
+ ">>MIDDLE<<"
14
+ ],
15
+ "eos_token": {
16
+ "content": "<|endoftext|>",
17
+ "lstrip": false,
18
+ "normalized": false,
19
+ "rstrip": false,
20
+ "single_word": false
21
+ },
22
+ "pad_token": "<|endoftext|>"
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "0": {
5
+ "content": ">>TITLE<<",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "1": {
13
+ "content": ">>ABSTRACT<<",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "2": {
21
+ "content": ">>INTRODUCTION<<",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "3": {
29
+ "content": ">>SUMMARY<<",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "4": {
37
+ "content": ">>COMMENT<<",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "5": {
45
+ "content": ">>ANSWER<<",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "6": {
53
+ "content": ">>QUESTION<<",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "7": {
61
+ "content": ">>DOMAIN<<",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "8": {
69
+ "content": ">>PREFIX<<",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "9": {
77
+ "content": ">>SUFFIX<<",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "10": {
85
+ "content": ">>MIDDLE<<",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "11": {
93
+ "content": "<|endoftext|>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ }
100
+ },
101
+ "additional_special_tokens": [
102
+ ">>TITLE<<",
103
+ ">>ABSTRACT<<",
104
+ ">>INTRODUCTION<<",
105
+ ">>SUMMARY<<",
106
+ ">>COMMENT<<",
107
+ ">>ANSWER<<",
108
+ ">>QUESTION<<",
109
+ ">>DOMAIN<<",
110
+ ">>PREFIX<<",
111
+ ">>SUFFIX<<",
112
+ ">>MIDDLE<<"
113
+ ],
114
+ "clean_up_tokenization_spaces": false,
115
+ "eos_token": "<|endoftext|>",
116
+ "extra_special_tokens": {},
117
+ "model_input_names": [
118
+ "input_ids",
119
+ "attention_mask"
120
+ ],
121
+ "model_max_length": 128,
122
+ "pad_token": "<|endoftext|>",
123
+ "tokenizer_class": "PreTrainedTokenizerFast"
124
+ }
training_metrics.json ADDED
@@ -0,0 +1,1219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "tiiuae/falcon-7b-instruct",
3
+ "training_method": "Custom DPO (Memory Optimized)",
4
+ "device": "mps",
5
+ "final_loss": 0.007128167455084622,
6
+ "all_losses": [
7
+ 0.6931445002555847,
8
+ 0.6931498646736145,
9
+ 0.6931474804878235,
10
+ 0.6931471824645996,
11
+ 0.6931498646736145,
12
+ 0.6931471824645996,
13
+ 0.6931471824645996,
14
+ 0.6931483149528503,
15
+ 0.6924462914466858,
16
+ 0.6917656660079956,
17
+ 0.6914777159690857,
18
+ 0.6924195289611816,
19
+ 0.6927425265312195,
20
+ 0.6914411187171936,
21
+ 0.6927124261856079,
22
+ 0.6918513178825378,
23
+ 0.6910051703453064,
24
+ 0.692326545715332,
25
+ 0.6922808289527893,
26
+ 0.6924623250961304,
27
+ 0.6905725002288818,
28
+ 0.690464437007904,
29
+ 0.6897289752960205,
30
+ 0.6904743909835815,
31
+ 0.6895521283149719,
32
+ 0.6909302473068237,
33
+ 0.6909027695655823,
34
+ 0.6886829733848572,
35
+ 0.6886737942695618,
36
+ 0.6876998543739319,
37
+ 0.6876599788665771,
38
+ 0.6908404231071472,
39
+ 0.6903031468391418,
40
+ 0.6902902126312256,
41
+ 0.6899273991584778,
42
+ 0.6880876421928406,
43
+ 0.6880360245704651,
44
+ 0.6854314208030701,
45
+ 0.6878971457481384,
46
+ 0.6865187287330627,
47
+ 0.6890680193901062,
48
+ 0.6891193389892578,
49
+ 0.6858062148094177,
50
+ 0.6860361099243164,
51
+ 0.6890460848808289,
52
+ 0.6843717694282532,
53
+ 0.682920515537262,
54
+ 0.683175802230835,
55
+ 0.6849693655967712,
56
+ 0.6851096749305725,
57
+ 0.6852080821990967,
58
+ 0.6848581433296204,
59
+ 0.6820118427276611,
60
+ 0.6849530935287476,
61
+ 0.6818994283676147,
62
+ 0.6818982362747192,
63
+ 0.6832471489906311,
64
+ 0.6877012848854065,
65
+ 0.6774458885192871,
66
+ 0.6862993240356445,
67
+ 0.6863565444946289,
68
+ 0.6831058859825134,
69
+ 0.6877350807189941,
70
+ 0.6861698031425476,
71
+ 0.6846379637718201,
72
+ 0.6847556233406067,
73
+ 0.6744025945663452,
74
+ 0.6765581369400024,
75
+ 0.6793200373649597,
76
+ 0.6791293621063232,
77
+ 0.6886783242225647,
78
+ 0.6765052080154419,
79
+ 0.6711891293525696,
80
+ 0.6784105896949768,
81
+ 0.6789045333862305,
82
+ 0.678804874420166,
83
+ 0.6850094199180603,
84
+ 0.6876925826072693,
85
+ 0.6827645897865295,
86
+ 0.6732222437858582,
87
+ 0.6740774512290955,
88
+ 0.6807486414909363,
89
+ 0.6702357530593872,
90
+ 0.6761305928230286,
91
+ 0.6830084919929504,
92
+ 0.6759828925132751,
93
+ 0.6817108392715454,
94
+ 0.6811547875404358,
95
+ 0.6732296943664551,
96
+ 0.6797907948493958,
97
+ 0.6731377243995667,
98
+ 0.6788240075111389,
99
+ 0.6800283193588257,
100
+ 0.6814838647842407,
101
+ 0.6706371903419495,
102
+ 0.681279182434082,
103
+ 0.6795840859413147,
104
+ 0.6606131792068481,
105
+ 0.6701865792274475,
106
+ 0.6792699694633484,
107
+ 0.6670989394187927,
108
+ 0.6697462201118469,
109
+ 0.6629945635795593,
110
+ 0.6633478403091431,
111
+ 0.66351318359375,
112
+ 0.666574239730835,
113
+ 0.6735833883285522,
114
+ 0.6776118874549866,
115
+ 0.6631135940551758,
116
+ 0.6666763424873352,
117
+ 0.677090048789978,
118
+ 0.6741803288459778,
119
+ 0.6592918038368225,
120
+ 0.6552661061286926,
121
+ 0.6631354689598083,
122
+ 0.6552324295043945,
123
+ 0.6627830862998962,
124
+ 0.6758089661598206,
125
+ 0.6592468619346619,
126
+ 0.6552423238754272,
127
+ 0.6733235716819763,
128
+ 0.6587954163551331,
129
+ 0.6683547496795654,
130
+ 0.647455096244812,
131
+ 0.6678580045700073,
132
+ 0.6583791375160217,
133
+ 0.6509461402893066,
134
+ 0.6718681454658508,
135
+ 0.671025276184082,
136
+ 0.6652463674545288,
137
+ 0.6504629254341125,
138
+ 0.6693057417869568,
139
+ 0.6692730188369751,
140
+ 0.6462253332138062,
141
+ 0.6497525572776794,
142
+ 0.6423419117927551,
143
+ 0.6501054763793945,
144
+ 0.6654513478279114,
145
+ 0.6773765087127686,
146
+ 0.6501018404960632,
147
+ 0.6614413261413574,
148
+ 0.6409609317779541,
149
+ 0.6615778207778931,
150
+ 0.6615719199180603,
151
+ 0.6626366376876831,
152
+ 0.6455371975898743,
153
+ 0.6574934720993042,
154
+ 0.6626887917518616,
155
+ 0.6576720476150513,
156
+ 0.6625458002090454,
157
+ 0.6458619832992554,
158
+ 0.6354551911354065,
159
+ 0.660053014755249,
160
+ 0.6532688140869141,
161
+ 0.6297677159309387,
162
+ 0.6621207594871521,
163
+ 0.640588104724884,
164
+ 0.658538818359375,
165
+ 0.6531044840812683,
166
+ 0.6294600963592529,
167
+ 0.6284335255622864,
168
+ 0.6232660412788391,
169
+ 0.6563464403152466,
170
+ 0.6583169102668762,
171
+ 0.658644437789917,
172
+ 0.6585259437561035,
173
+ 0.6486587524414062,
174
+ 0.6583632826805115,
175
+ 0.6510217785835266,
176
+ 0.630347490310669,
177
+ 0.6527251601219177,
178
+ 0.6438708901405334,
179
+ 0.6299727559089661,
180
+ 0.6503925323486328,
181
+ 0.6297138929367065,
182
+ 0.6438133716583252,
183
+ 0.650181770324707,
184
+ 0.6243736147880554,
185
+ 0.6486515402793884,
186
+ 0.6460529565811157,
187
+ 0.6103096008300781,
188
+ 0.6237742900848389,
189
+ 0.6384769082069397,
190
+ 0.6240480542182922,
191
+ 0.6038098335266113,
192
+ 0.6452614068984985,
193
+ 0.6332404613494873,
194
+ 0.6416230201721191,
195
+ 0.6042110919952393,
196
+ 0.6040128469467163,
197
+ 0.6331872344017029,
198
+ 0.6036081910133362,
199
+ 0.5978191494941711,
200
+ 0.6272575855255127,
201
+ 0.6406931281089783,
202
+ 0.6047845482826233,
203
+ 0.6278883814811707,
204
+ 0.6118102669715881,
205
+ 0.6118766665458679,
206
+ 0.6271786093711853,
207
+ 0.6303728818893433,
208
+ 0.6216133832931519,
209
+ 0.5921457409858704,
210
+ 0.6198221445083618,
211
+ 0.6354344487190247,
212
+ 0.6049428582191467,
213
+ 0.5899803042411804,
214
+ 0.6206803917884827,
215
+ 0.6305359601974487,
216
+ 0.5812323093414307,
217
+ 0.6322135329246521,
218
+ 0.5982199311256409,
219
+ 0.6254496574401855,
220
+ 0.6309357285499573,
221
+ 0.5979939103126526,
222
+ 0.6308203339576721,
223
+ 0.5728160738945007,
224
+ 0.577912449836731,
225
+ 0.5841314792633057,
226
+ 0.579559326171875,
227
+ 0.6086212992668152,
228
+ 0.5909605026245117,
229
+ 0.6278688311576843,
230
+ 0.6253457069396973,
231
+ 0.564061164855957,
232
+ 0.5713092088699341,
233
+ 0.5979952216148376,
234
+ 0.6022064685821533,
235
+ 0.6023690104484558,
236
+ 0.6233775019645691,
237
+ 0.5827073454856873,
238
+ 0.5636537671089172,
239
+ 0.5753647685050964,
240
+ 0.5898715257644653,
241
+ 0.5755640268325806,
242
+ 0.5756675004959106,
243
+ 0.6178175806999207,
244
+ 0.5756856203079224,
245
+ 0.5747778415679932,
246
+ 0.5903384685516357,
247
+ 0.586996853351593,
248
+ 0.5555005669593811,
249
+ 0.5667383670806885,
250
+ 0.5442721247673035,
251
+ 0.5666518211364746,
252
+ 0.6131772398948669,
253
+ 0.545123815536499,
254
+ 0.6462403535842896,
255
+ 0.607905387878418,
256
+ 0.5788690447807312,
257
+ 0.5776719450950623,
258
+ 0.5526711344718933,
259
+ 0.5344640612602234,
260
+ 0.5575963854789734,
261
+ 0.6075429916381836,
262
+ 0.5787517428398132,
263
+ 0.5439103245735168,
264
+ 0.6017323136329651,
265
+ 0.5481045842170715,
266
+ 0.5938747525215149,
267
+ 0.5648720860481262,
268
+ 0.5480005145072937,
269
+ 0.6017833352088928,
270
+ 0.570075273513794,
271
+ 0.5950820446014404,
272
+ 0.5341002941131592,
273
+ 0.532304048538208,
274
+ 0.5565545558929443,
275
+ 0.5950796008110046,
276
+ 0.5383984446525574,
277
+ 0.533221960067749,
278
+ 0.6355130076408386,
279
+ 0.5884405970573425,
280
+ 0.5028324127197266,
281
+ 0.5036593675613403,
282
+ 0.6313869953155518,
283
+ 0.630559504032135,
284
+ 0.5042805671691895,
285
+ 0.5815727114677429,
286
+ 0.5232963562011719,
287
+ 0.5385051965713501,
288
+ 0.5132167339324951,
289
+ 0.5420464873313904,
290
+ 0.5391989946365356,
291
+ 0.5424069762229919,
292
+ 0.5750864148139954,
293
+ 0.5136165022850037,
294
+ 0.54123854637146,
295
+ 0.5116230249404907,
296
+ 0.5112494230270386,
297
+ 0.5308729410171509,
298
+ 0.6215913891792297,
299
+ 0.5111666321754456,
300
+ 0.622231662273407,
301
+ 0.5071014165878296,
302
+ 0.5085077285766602,
303
+ 0.5014936327934265,
304
+ 0.49290230870246887,
305
+ 0.5674858689308167,
306
+ 0.4712718725204468,
307
+ 0.5025614500045776,
308
+ 0.4938358664512634,
309
+ 0.5211197733879089,
310
+ 0.5020002126693726,
311
+ 0.5097358822822571,
312
+ 0.49262428283691406,
313
+ 0.46051454544067383,
314
+ 0.5525519847869873,
315
+ 0.4885499179363251,
316
+ 0.49268150329589844,
317
+ 0.46003666520118713,
318
+ 0.6113331317901611,
319
+ 0.48125725984573364,
320
+ 0.5472245812416077,
321
+ 0.4719480276107788,
322
+ 0.5542081594467163,
323
+ 0.47185248136520386,
324
+ 0.4977332651615143,
325
+ 0.49960532784461975,
326
+ 0.5458657145500183,
327
+ 0.48605361580848694,
328
+ 0.5471256375312805,
329
+ 0.43695396184921265,
330
+ 0.547371506690979,
331
+ 0.5411002039909363,
332
+ 0.5374128818511963,
333
+ 0.48689737915992737,
334
+ 0.5411355495452881,
335
+ 0.4556392729282379,
336
+ 0.4745101034641266,
337
+ 0.5939860939979553,
338
+ 0.4611460864543915,
339
+ 0.4621794819831848,
340
+ 0.5286901593208313,
341
+ 0.4262191355228424,
342
+ 0.4488903880119324,
343
+ 0.43746116757392883,
344
+ 0.5253694653511047,
345
+ 0.4135725498199463,
346
+ 0.4603022634983063,
347
+ 0.5876001119613647,
348
+ 0.4704902470111847,
349
+ 0.43742114305496216,
350
+ 0.4147413969039917,
351
+ 0.4418703019618988,
352
+ 0.5819816589355469,
353
+ 0.5160590410232544,
354
+ 0.4605996012687683,
355
+ 0.40328705310821533,
356
+ 0.44819375872612,
357
+ 0.582499086856842,
358
+ 0.40257078409194946,
359
+ 0.5744220018386841,
360
+ 0.5161323547363281,
361
+ 0.42198461294174194,
362
+ 0.4507005512714386,
363
+ 0.4505624771118164,
364
+ 0.389405220746994,
365
+ 0.42344269156455994,
366
+ 0.4131486713886261,
367
+ 0.4112369120121002,
368
+ 0.5080081820487976,
369
+ 0.41043415665626526,
370
+ 0.42155003547668457,
371
+ 0.4015685021877289,
372
+ 0.49989670515060425,
373
+ 0.3771463632583618,
374
+ 0.49973490834236145,
375
+ 0.3651106655597687,
376
+ 0.388476699590683,
377
+ 0.4131292402744293,
378
+ 0.38985753059387207,
379
+ 0.41296517848968506,
380
+ 0.4875871241092682,
381
+ 0.413534551858902,
382
+ 0.4903828203678131,
383
+ 0.3772355318069458,
384
+ 0.39644503593444824,
385
+ 0.490755558013916,
386
+ 0.491123229265213,
387
+ 0.4911811351776123,
388
+ 0.4031429588794708,
389
+ 0.37661072611808777,
390
+ 0.4787423312664032,
391
+ 0.48106497526168823,
392
+ 0.39308962225914,
393
+ 0.4690783619880676,
394
+ 0.33858534693717957,
395
+ 0.39356479048728943,
396
+ 0.3379952013492584,
397
+ 0.4061875641345978,
398
+ 0.39284342527389526,
399
+ 0.37173643708229065,
400
+ 0.3626065254211426,
401
+ 0.3514269292354584,
402
+ 0.36128658056259155,
403
+ 0.3965463936328888,
404
+ 0.47016477584838867,
405
+ 0.383629709482193,
406
+ 0.3255033493041992,
407
+ 0.35901546478271484,
408
+ 0.45945486426353455,
409
+ 0.3588974177837372,
410
+ 0.3722594976425171,
411
+ 0.34977397322654724,
412
+ 0.3586667478084564,
413
+ 0.3726046681404114,
414
+ 0.33926698565483093,
415
+ 0.34642764925956726,
416
+ 0.33725613355636597,
417
+ 0.32578474283218384,
418
+ 0.3012453615665436,
419
+ 0.3619304299354553,
420
+ 0.3619183897972107,
421
+ 0.33702749013900757,
422
+ 0.44183972477912903,
423
+ 0.33244702219963074,
424
+ 0.3148934841156006,
425
+ 0.36402735114097595,
426
+ 0.3240016996860504,
427
+ 0.3232402503490448,
428
+ 0.43226319551467896,
429
+ 0.4344284236431122,
430
+ 0.3638581335544586,
431
+ 0.3404121994972229,
432
+ 0.42569249868392944,
433
+ 0.42337852716445923,
434
+ 0.302324116230011,
435
+ 0.3398860692977905,
436
+ 0.3185364305973053,
437
+ 0.34056708216667175,
438
+ 0.3027110695838928,
439
+ 0.41399940848350525,
440
+ 0.29627907276153564,
441
+ 0.41602903604507446,
442
+ 0.32866451144218445,
443
+ 0.41556599736213684,
444
+ 0.2914108335971832,
445
+ 0.3284965455532074,
446
+ 0.29041633009910583,
447
+ 0.49763035774230957,
448
+ 0.29284006357192993,
449
+ 0.4037092626094818,
450
+ 0.29212823510169983,
451
+ 0.27949556708335876,
452
+ 0.28409966826438904,
453
+ 0.4046476185321808,
454
+ 0.29120299220085144,
455
+ 0.3919215798377991,
456
+ 0.30811893939971924,
457
+ 0.27066531777381897,
458
+ 0.49170199036598206,
459
+ 0.3195757269859314,
460
+ 0.26983997225761414,
461
+ 0.2669019103050232,
462
+ 0.27848219871520996,
463
+ 0.2547789514064789,
464
+ 0.2974504828453064,
465
+ 0.26666125655174255,
466
+ 0.23456233739852905,
467
+ 0.2559671998023987,
468
+ 0.38447028398513794,
469
+ 0.38289400935173035,
470
+ 0.3107762932777405,
471
+ 0.2988559305667877,
472
+ 0.24448160827159882,
473
+ 0.3724191188812256,
474
+ 0.2874979078769684,
475
+ 0.25385788083076477,
476
+ 0.4768151640892029,
477
+ 0.47619226574897766,
478
+ 0.28776121139526367,
479
+ 0.36527010798454285,
480
+ 0.24211189150810242,
481
+ 0.2317088097333908,
482
+ 0.27747198939323425,
483
+ 0.2773359417915344,
484
+ 0.2762437164783478,
485
+ 0.27781257033348083,
486
+ 0.2870321571826935,
487
+ 0.22294077277183533,
488
+ 0.205506831407547,
489
+ 0.2658420205116272,
490
+ 0.23179513216018677,
491
+ 0.2660740911960602,
492
+ 0.2657136023044586,
493
+ 0.26531633734703064,
494
+ 0.3500315845012665,
495
+ 0.2546113133430481,
496
+ 0.34498539566993713,
497
+ 0.34042835235595703,
498
+ 0.22066892683506012,
499
+ 0.3472563624382019,
500
+ 0.2131386250257492,
501
+ 0.20853550732135773,
502
+ 0.21361389756202698,
503
+ 0.44278255105018616,
504
+ 0.32870081067085266,
505
+ 0.32989436388015747,
506
+ 0.24386601150035858,
507
+ 0.24373729526996613,
508
+ 0.20331601798534393,
509
+ 0.19704888761043549,
510
+ 0.24429944157600403,
511
+ 0.18628498911857605,
512
+ 0.23279482126235962,
513
+ 0.17954613268375397,
514
+ 0.31857889890670776,
515
+ 0.3170939087867737,
516
+ 0.24498921632766724,
517
+ 0.3257792294025421,
518
+ 0.18555884063243866,
519
+ 0.4273545742034912,
520
+ 0.3161287307739258,
521
+ 0.2216482013463974,
522
+ 0.18559527397155762,
523
+ 0.30575141310691833,
524
+ 0.2216119021177292,
525
+ 0.42628270387649536,
526
+ 0.22195522487163544,
527
+ 0.30648308992385864,
528
+ 0.16562257707118988,
529
+ 0.22686660289764404,
530
+ 0.17801722884178162,
531
+ 0.183041051030159,
532
+ 0.29550305008888245,
533
+ 0.21192996203899384,
534
+ 0.21171073615550995,
535
+ 0.1536053717136383,
536
+ 0.16992346942424774,
537
+ 0.1533624231815338,
538
+ 0.2846032977104187,
539
+ 0.15464404225349426,
540
+ 0.289499968290329,
541
+ 0.15336313843727112,
542
+ 0.1748756319284439,
543
+ 0.14590901136398315,
544
+ 0.1667328178882599,
545
+ 0.2733495831489563,
546
+ 0.28692227602005005,
547
+ 0.19089758396148682,
548
+ 0.16649959981441498,
549
+ 0.14543405175209045,
550
+ 0.19044874608516693,
551
+ 0.18160457909107208,
552
+ 0.18118010461330414,
553
+ 0.181069016456604,
554
+ 0.3883045017719269,
555
+ 0.261026531457901,
556
+ 0.18171244859695435,
557
+ 0.19860412180423737,
558
+ 0.15499143302440643,
559
+ 0.2673388123512268,
560
+ 0.15064392983913422,
561
+ 0.3796258866786957,
562
+ 0.1885426938533783,
563
+ 0.1719590723514557,
564
+ 0.26763731241226196,
565
+ 0.17158840596675873,
566
+ 0.2675325870513916,
567
+ 0.12149936705827713,
568
+ 0.1628296971321106,
569
+ 0.257920503616333,
570
+ 0.14409102499485016,
571
+ 0.16261634230613708,
572
+ 0.14411258697509766,
573
+ 0.11936276406049728,
574
+ 0.1442900002002716,
575
+ 0.15381605923175812,
576
+ 0.1538545787334442,
577
+ 0.17111986875534058,
578
+ 0.13673533499240875,
579
+ 0.15364094078540802,
580
+ 0.13648462295532227,
581
+ 0.15382085740566254,
582
+ 0.11248353868722916,
583
+ 0.1284705549478531,
584
+ 0.10767433792352676,
585
+ 0.1623470038175583,
586
+ 0.1615772843360901,
587
+ 0.21944770216941833,
588
+ 0.1622009575366974,
589
+ 0.12895824015140533,
590
+ 0.13029201328754425,
591
+ 0.1529310941696167,
592
+ 0.2316240668296814,
593
+ 0.22977925837039948,
594
+ 0.12518227100372314,
595
+ 0.10138191282749176,
596
+ 0.20921847224235535,
597
+ 0.10204995423555374,
598
+ 0.153370201587677,
599
+ 0.11576832085847855,
600
+ 0.332719624042511,
601
+ 0.14384855329990387,
602
+ 0.22274072468280792,
603
+ 0.09217941761016846,
604
+ 0.12970037758350372,
605
+ 0.22235463559627533,
606
+ 0.092031329870224,
607
+ 0.21452496945858002,
608
+ 0.08616142719984055,
609
+ 0.19010883569717407,
610
+ 0.08598838746547699,
611
+ 0.13536641001701355,
612
+ 0.11477453261613846,
613
+ 0.12270762771368027,
614
+ 0.19011740386486053,
615
+ 0.08391938358545303,
616
+ 0.10413017123937607,
617
+ 0.11583764851093292,
618
+ 0.12667758762836456,
619
+ 0.11639966070652008,
620
+ 0.18030133843421936,
621
+ 0.0807802826166153,
622
+ 0.2086164951324463,
623
+ 0.09767240285873413,
624
+ 0.19968107342720032,
625
+ 0.17134496569633484,
626
+ 0.11898531019687653,
627
+ 0.09840808063745499,
628
+ 0.10531356185674667,
629
+ 0.0979539006948471,
630
+ 0.20009057223796844,
631
+ 0.10196167975664139,
632
+ 0.103786900639534,
633
+ 0.10384460538625717,
634
+ 0.07066081464290619,
635
+ 0.11088051646947861,
636
+ 0.194127157330513,
637
+ 0.07415738701820374,
638
+ 0.10151051729917526,
639
+ 0.09781283885240555,
640
+ 0.09813503175973892,
641
+ 0.28520989418029785,
642
+ 0.15282398462295532,
643
+ 0.09743776172399521,
644
+ 0.28450801968574524,
645
+ 0.183410182595253,
646
+ 0.1844703108072281,
647
+ 0.09261145442724228,
648
+ 0.09259688854217529,
649
+ 0.06175907701253891,
650
+ 0.09248984605073929,
651
+ 0.06517014652490616,
652
+ 0.144436314702034,
653
+ 0.06500717997550964,
654
+ 0.0985884889960289,
655
+ 0.06170068681240082,
656
+ 0.08891043066978455,
657
+ 0.060722120106220245,
658
+ 0.17274008691310883,
659
+ 0.08725526928901672,
660
+ 0.17030903697013855,
661
+ 0.08745495229959488,
662
+ 0.0779389962553978,
663
+ 0.08279872685670853,
664
+ 0.16612842679023743,
665
+ 0.0848052129149437,
666
+ 0.08498108386993408,
667
+ 0.08733031898736954,
668
+ 0.0538545660674572,
669
+ 0.05413297191262245,
670
+ 0.07482273876667023,
671
+ 0.08140134811401367,
672
+ 0.07808542251586914,
673
+ 0.15740883350372314,
674
+ 0.05060839280486107,
675
+ 0.05062108486890793,
676
+ 0.07066836953163147,
677
+ 0.15739069879055023,
678
+ 0.07058772444725037,
679
+ 0.11598871648311615,
680
+ 0.07767332345247269,
681
+ 0.07423298805952072,
682
+ 0.07410160452127457,
683
+ 0.0661250650882721,
684
+ 0.15170904994010925,
685
+ 0.07419092208147049,
686
+ 0.1536543369293213,
687
+ 0.07391837984323502,
688
+ 0.07472262531518936,
689
+ 0.0470963679254055,
690
+ 0.14525943994522095,
691
+ 0.07434919476509094,
692
+ 0.07462549209594727,
693
+ 0.06316735595464706,
694
+ 0.07398713380098343,
695
+ 0.10506890714168549,
696
+ 0.07109792530536652,
697
+ 0.13960401713848114,
698
+ 0.06049637123942375,
699
+ 0.1400953233242035,
700
+ 0.07119550555944443,
701
+ 0.14230406284332275,
702
+ 0.06005876511335373,
703
+ 0.13698899745941162,
704
+ 0.0631227046251297,
705
+ 0.06297764927148819,
706
+ 0.03925151005387306,
707
+ 0.06299925595521927,
708
+ 0.06325296312570572,
709
+ 0.13649646937847137,
710
+ 0.0629970133304596,
711
+ 0.05378938838839531,
712
+ 0.06450459361076355,
713
+ 0.208353653550148,
714
+ 0.09393519908189774,
715
+ 0.1300305724143982,
716
+ 0.20770245790481567,
717
+ 0.06392695009708405,
718
+ 0.038912978023290634,
719
+ 0.03449998050928116,
720
+ 0.06094411015510559,
721
+ 0.19998419284820557,
722
+ 0.05629725754261017,
723
+ 0.08995649963617325,
724
+ 0.05070539563894272,
725
+ 0.05099249631166458,
726
+ 0.05631033331155777,
727
+ 0.05361461266875267,
728
+ 0.05806032568216324,
729
+ 0.04804699867963791,
730
+ 0.05332792550325394,
731
+ 0.05387614294886589,
732
+ 0.05323614925146103,
733
+ 0.05815042555332184,
734
+ 0.053521960973739624,
735
+ 0.04561753198504448,
736
+ 0.08139926195144653,
737
+ 0.054878465831279755,
738
+ 0.0551244392991066,
739
+ 0.0456833578646183,
740
+ 0.045276131480932236,
741
+ 0.03047638013958931,
742
+ 0.1159338429570198,
743
+ 0.11017680913209915,
744
+ 0.02905959077179432,
745
+ 0.04293733090162277,
746
+ 0.11113686859607697,
747
+ 0.02888599969446659,
748
+ 0.031032411381602287,
749
+ 0.043122775852680206,
750
+ 0.10938327759504318,
751
+ 0.10555075854063034,
752
+ 0.040388934314250946,
753
+ 0.027218958362936974,
754
+ 0.027276845648884773,
755
+ 0.05162633955478668,
756
+ 0.07320689409971237,
757
+ 0.104668527841568,
758
+ 0.10550194978713989,
759
+ 0.10326311737298965,
760
+ 0.04261729493737221,
761
+ 0.0477943941950798,
762
+ 0.07015129178762436,
763
+ 0.03817280754446983,
764
+ 0.07003726065158844,
765
+ 0.028019791468977928,
766
+ 0.049845870584249496,
767
+ 0.04106797277927399,
768
+ 0.06692957878112793,
769
+ 0.15731248259544373,
770
+ 0.06649645417928696,
771
+ 0.04777837172150612,
772
+ 0.03588022291660309,
773
+ 0.10032788664102554,
774
+ 0.048243198543787,
775
+ 0.034380316734313965,
776
+ 0.03860827907919884,
777
+ 0.022958889603614807,
778
+ 0.022758832201361656,
779
+ 0.03870966657996178,
780
+ 0.03384919464588165,
781
+ 0.03843679651618004,
782
+ 0.04562322422862053,
783
+ 0.03202221170067787,
784
+ 0.03203202411532402,
785
+ 0.021567918360233307,
786
+ 0.032222963869571686,
787
+ 0.06020233407616615,
788
+ 0.14640145003795624,
789
+ 0.08551933616399765,
790
+ 0.0856010839343071,
791
+ 0.03489112854003906,
792
+ 0.020358998328447342,
793
+ 0.08126595616340637,
794
+ 0.042565543204545975,
795
+ 0.09101268649101257,
796
+ 0.023345721885561943,
797
+ 0.03472856059670448,
798
+ 0.05675363540649414,
799
+ 0.05414426326751709,
800
+ 0.05414753779768944,
801
+ 0.01939511112868786,
802
+ 0.08808095753192902,
803
+ 0.02856328710913658,
804
+ 0.03307066485285759,
805
+ 0.08813313394784927,
806
+ 0.038151804357767105,
807
+ 0.1282176524400711,
808
+ 0.03115582838654518,
809
+ 0.01850273460149765,
810
+ 0.03968880698084831,
811
+ 0.1289437711238861,
812
+ 0.07305321097373962,
813
+ 0.07344783842563629,
814
+ 0.031223079189658165,
815
+ 0.03465590626001358,
816
+ 0.034709103405475616,
817
+ 0.020741933956742287,
818
+ 0.02549893409013748,
819
+ 0.01725928485393524,
820
+ 0.08208199590444565,
821
+ 0.017377501353621483,
822
+ 0.025658823549747467,
823
+ 0.046369172632694244,
824
+ 0.02428009919822216,
825
+ 0.019997181370854378,
826
+ 0.02836006134748459,
827
+ 0.03314285725355148,
828
+ 0.028280219063162804,
829
+ 0.024202723056077957,
830
+ 0.03662899136543274,
831
+ 0.03557897359132767,
832
+ 0.026715703308582306,
833
+ 0.04420220106840134,
834
+ 0.035717934370040894,
835
+ 0.035446204245090485,
836
+ 0.11303487420082092,
837
+ 0.02687249891459942,
838
+ 0.03556240722537041,
839
+ 0.07435694336891174,
840
+ 0.018380669876933098,
841
+ 0.025674276053905487,
842
+ 0.03018934465944767,
843
+ 0.025509392842650414,
844
+ 0.07492759823799133,
845
+ 0.021768679842352867,
846
+ 0.025608163326978683,
847
+ 0.10356583446264267,
848
+ 0.024305695667862892,
849
+ 0.07274787873029709,
850
+ 0.02021040767431259,
851
+ 0.01732548326253891,
852
+ 0.014172733761370182,
853
+ 0.10311657935380936,
854
+ 0.04015694931149483,
855
+ 0.028021298348903656,
856
+ 0.02302529476583004,
857
+ 0.0693942978978157,
858
+ 0.02783268690109253,
859
+ 0.019521726295351982,
860
+ 0.016449080780148506,
861
+ 0.03829626366496086,
862
+ 0.02777726575732231,
863
+ 0.015750879421830177,
864
+ 0.022011732682585716,
865
+ 0.01844913512468338,
866
+ 0.030725881457328796,
867
+ 0.05375843495130539,
868
+ 0.016024962067604065,
869
+ 0.0221174955368042,
870
+ 0.012806553393602371,
871
+ 0.02082611620426178,
872
+ 0.06471490859985352,
873
+ 0.06495456397533417,
874
+ 0.05105230584740639,
875
+ 0.029913099482655525,
876
+ 0.01761529967188835,
877
+ 0.02101733908057213,
878
+ 0.020816192030906677,
879
+ 0.0118758799508214,
880
+ 0.024353278800845146,
881
+ 0.03329184278845787,
882
+ 0.028668126091361046,
883
+ 0.08612500876188278,
884
+ 0.06303495913743973,
885
+ 0.01996738463640213,
886
+ 0.0198186207562685,
887
+ 0.011274555698037148,
888
+ 0.03189116716384888,
889
+ 0.060677576810121536,
890
+ 0.011297069489955902,
891
+ 0.013953866437077522,
892
+ 0.018967796117067337,
893
+ 0.013768225908279419,
894
+ 0.0608196035027504,
895
+ 0.01799273118376732,
896
+ 0.018005844205617905,
897
+ 0.02705247327685356,
898
+ 0.05832856893539429,
899
+ 0.018186602741479874,
900
+ 0.045446332544088364,
901
+ 0.01523747481405735,
902
+ 0.01527586579322815,
903
+ 0.02588466927409172,
904
+ 0.014593173749744892,
905
+ 0.02603543922305107,
906
+ 0.07579998672008514,
907
+ 0.02130398526787758,
908
+ 0.07544110715389252,
909
+ 0.05617983639240265,
910
+ 0.017088552936911583,
911
+ 0.025242196395993233,
912
+ 0.05434073880314827,
913
+ 0.011736392974853516,
914
+ 0.016324538737535477,
915
+ 0.013875570148229599,
916
+ 0.00995834730565548,
917
+ 0.02501341514289379,
918
+ 0.013839947059750557,
919
+ 0.024364331737160683,
920
+ 0.019488992169499397,
921
+ 0.052454929798841476,
922
+ 0.019539261236786842,
923
+ 0.015594560652971268,
924
+ 0.015654180198907852,
925
+ 0.009525090456008911,
926
+ 0.040793001651763916,
927
+ 0.01281232014298439,
928
+ 0.023437952622771263,
929
+ 0.012722281739115715,
930
+ 0.00927579402923584,
931
+ 0.010758965276181698,
932
+ 0.023302050307393074,
933
+ 0.010716980323195457,
934
+ 0.009196422062814236,
935
+ 0.012283862568438053,
936
+ 0.022570855915546417,
937
+ 0.012104624882340431,
938
+ 0.010285703465342522,
939
+ 0.063756063580513,
940
+ 0.048849720507860184,
941
+ 0.02277025207877159,
942
+ 0.012194129638373852,
943
+ 0.013649464584887028,
944
+ 0.061110541224479675,
945
+ 0.009697116911411285,
946
+ 0.013558678328990936,
947
+ 0.03617057576775551,
948
+ 0.011763019487261772,
949
+ 0.02204589918255806,
950
+ 0.013672629371285439,
951
+ 0.008239207789301872,
952
+ 0.020937608554959297,
953
+ 0.023888971656560898,
954
+ 0.01295860018581152,
955
+ 0.0082494942471385,
956
+ 0.009257960133254528,
957
+ 0.02342071942985058,
958
+ 0.045510124415159225,
959
+ 0.022909024730324745,
960
+ 0.016102973371744156,
961
+ 0.008905809372663498,
962
+ 0.01584017649292946,
963
+ 0.044379424303770065,
964
+ 0.007914611138403416,
965
+ 0.012482728809118271,
966
+ 0.03377128764986992,
967
+ 0.04281456023454666,
968
+ 0.007688809186220169,
969
+ 0.01945801079273224,
970
+ 0.011936899274587631,
971
+ 0.053659241646528244,
972
+ 0.007626701612025499,
973
+ 0.007673193700611591,
974
+ 0.008628113195300102,
975
+ 0.010137615725398064,
976
+ 0.02155928499996662,
977
+ 0.014737549237906933,
978
+ 0.007409236393868923,
979
+ 0.010095249861478806,
980
+ 0.008118250407278538,
981
+ 0.014707712456583977,
982
+ 0.014681986533105373,
983
+ 0.010801891796290874,
984
+ 0.007066851016134024,
985
+ 0.007132543716579676,
986
+ 0.018458731472492218,
987
+ 0.009614826180040836,
988
+ 0.007030273787677288,
989
+ 0.030689697712659836,
990
+ 0.00971116591244936,
991
+ 0.007582573220133781,
992
+ 0.007560212630778551,
993
+ 0.009404760785400867,
994
+ 0.018014390021562576,
995
+ 0.018174076452851295,
996
+ 0.010439195670187473,
997
+ 0.04770302027463913,
998
+ 0.01982855424284935,
999
+ 0.0384221151471138,
1000
+ 0.017519133165478706,
1001
+ 0.045681536197662354,
1002
+ 0.006694271694868803,
1003
+ 0.010092182084918022,
1004
+ 0.006609838921576738,
1005
+ 0.01750226505100727,
1006
+ 0.006641930900514126,
1007
+ 0.018852457404136658,
1008
+ 0.008757871575653553,
1009
+ 0.008739910088479519,
1010
+ 0.006435384973883629,
1011
+ 0.006513910833746195,
1012
+ 0.006421882193535566,
1013
+ 0.006908577401190996,
1014
+ 0.016923654824495316,
1015
+ 0.012021001428365707,
1016
+ 0.018463412299752235,
1017
+ 0.011996736750006676,
1018
+ 0.009289612993597984,
1019
+ 0.008412993513047695,
1020
+ 0.016532570123672485,
1021
+ 0.006137215532362461,
1022
+ 0.04224630445241928,
1023
+ 0.02647797204554081,
1024
+ 0.008114348165690899,
1025
+ 0.00805013906210661,
1026
+ 0.03560060262680054,
1027
+ 0.008099686354398727,
1028
+ 0.016109425574541092,
1029
+ 0.008110328577458858,
1030
+ 0.0357891321182251,
1031
+ 0.011022393591701984,
1032
+ 0.005766778718680143,
1033
+ 0.011249330826103687,
1034
+ 0.0058521125465631485,
1035
+ 0.039680443704128265,
1036
+ 0.007769601885229349,
1037
+ 0.008561336435377598,
1038
+ 0.006277486216276884,
1039
+ 0.010645860806107521,
1040
+ 0.005558155011385679,
1041
+ 0.005592889152467251,
1042
+ 0.007631315384060144,
1043
+ 0.007545660249888897,
1044
+ 0.00557309202849865,
1045
+ 0.01510127354413271,
1046
+ 0.007509337738156319,
1047
+ 0.024525102227926254,
1048
+ 0.014727800153195858,
1049
+ 0.032998692244291306,
1050
+ 0.00798970926553011,
1051
+ 0.02444111369550228,
1052
+ 0.0059145670384168625,
1053
+ 0.01467352919280529,
1054
+ 0.007273266091942787,
1055
+ 0.007598663680255413,
1056
+ 0.03250468894839287,
1057
+ 0.005221894942224026,
1058
+ 0.007062233984470367,
1059
+ 0.014368993230164051,
1060
+ 0.005186317954212427,
1061
+ 0.007637230679392815,
1062
+ 0.0071727861650288105,
1063
+ 0.00553883146494627,
1064
+ 0.015408169478178024,
1065
+ 0.0316757969558239,
1066
+ 0.006800838280469179,
1067
+ 0.03392940014600754,
1068
+ 0.005596089642494917,
1069
+ 0.006855893414467573,
1070
+ 0.013935409486293793,
1071
+ 0.013600778765976429,
1072
+ 0.009333429858088493,
1073
+ 0.0066059306263923645,
1074
+ 0.013660752214491367,
1075
+ 0.022320829331874847,
1076
+ 0.006648325826972723,
1077
+ 0.005374981090426445,
1078
+ 0.03280490264296532,
1079
+ 0.006788879632949829,
1080
+ 0.006889635231345892,
1081
+ 0.006878743413835764,
1082
+ 0.004766055848449469,
1083
+ 0.004800579976290464,
1084
+ 0.006821677088737488,
1085
+ 0.021795623004436493,
1086
+ 0.006406958214938641,
1087
+ 0.008698076009750366,
1088
+ 0.006594325415790081,
1089
+ 0.0064928289502859116,
1090
+ 0.006461797747761011,
1091
+ 0.029628215357661247,
1092
+ 0.00619669072329998,
1093
+ 0.030427930876612663,
1094
+ 0.029721025377511978,
1095
+ 0.00491992337629199,
1096
+ 0.02072185091674328,
1097
+ 0.013841710053384304,
1098
+ 0.014048143289983273,
1099
+ 0.006337308324873447,
1100
+ 0.006019795313477516,
1101
+ 0.012615637853741646,
1102
+ 0.012568551115691662,
1103
+ 0.012295755557715893,
1104
+ 0.005756585858762264,
1105
+ 0.028263067826628685,
1106
+ 0.0048377132043242455,
1107
+ 0.008061964064836502,
1108
+ 0.02834777720272541,
1109
+ 0.006076196674257517,
1110
+ 0.004772106651216745,
1111
+ 0.027578983455896378,
1112
+ 0.027783064171671867,
1113
+ 0.027765672653913498,
1114
+ 0.027766946703195572,
1115
+ 0.0076950788497924805,
1116
+ 0.0058954874984920025,
1117
+ 0.005574633367359638,
1118
+ 0.027760570868849754,
1119
+ 0.004509873688220978,
1120
+ 0.01162351667881012,
1121
+ 0.00566982151940465,
1122
+ 0.005404504481703043,
1123
+ 0.012854570522904396,
1124
+ 0.004122450482100248,
1125
+ 0.00753027992323041,
1126
+ 0.011642840690910816,
1127
+ 0.01138204988092184,
1128
+ 0.005541558377444744,
1129
+ 0.005255692172795534,
1130
+ 0.005272886715829372,
1131
+ 0.005462837405502796,
1132
+ 0.005315694026648998,
1133
+ 0.005482162348926067,
1134
+ 0.005250118672847748,
1135
+ 0.00392037071287632,
1136
+ 0.01218883041292429,
1137
+ 0.004222762770950794,
1138
+ 0.012111103162169456,
1139
+ 0.005280120298266411,
1140
+ 0.012218507938086987,
1141
+ 0.011025813408195972,
1142
+ 0.005098673980683088,
1143
+ 0.006903013680130243,
1144
+ 0.004197834059596062,
1145
+ 0.004231665749102831,
1146
+ 0.011809554882347584,
1147
+ 0.010888329707086086,
1148
+ 0.005138760898262262,
1149
+ 0.004948985762894154,
1150
+ 0.010789037682116032,
1151
+ 0.01057190541177988,
1152
+ 0.011509330943226814,
1153
+ 0.0050407941453158855,
1154
+ 0.006610786076635122,
1155
+ 0.024810977280139923,
1156
+ 0.0050112600438296795,
1157
+ 0.024488458409905434,
1158
+ 0.004096213262528181,
1159
+ 0.022485073655843735,
1160
+ 0.004858473781496286,
1161
+ 0.023943325504660606,
1162
+ 0.0036052961368113756,
1163
+ 0.004811969585716724,
1164
+ 0.024021420627832413,
1165
+ 0.00482252798974514,
1166
+ 0.022659895941615105,
1167
+ 0.023460427299141884,
1168
+ 0.010769696906208992,
1169
+ 0.004542389884591103,
1170
+ 0.016600457951426506,
1171
+ 0.003502308391034603,
1172
+ 0.003516444470733404,
1173
+ 0.004586771130561829,
1174
+ 0.004557935055345297,
1175
+ 0.004601841326802969,
1176
+ 0.006131173111498356,
1177
+ 0.003474866971373558,
1178
+ 0.009830987080931664,
1179
+ 0.022840164601802826,
1180
+ 0.02292405441403389,
1181
+ 0.01061861403286457,
1182
+ 0.021145032718777657,
1183
+ 0.005910301115363836,
1184
+ 0.0036365347914397717,
1185
+ 0.009599831886589527,
1186
+ 0.0033308761194348335,
1187
+ 0.004276416730135679,
1188
+ 0.015887577086687088,
1189
+ 0.0036367725115269423,
1190
+ 0.009621202014386654,
1191
+ 0.015479302033782005,
1192
+ 0.00432888139039278,
1193
+ 0.004331374075263739,
1194
+ 0.004275348503142595,
1195
+ 0.0042358203791081905,
1196
+ 0.015305684879422188,
1197
+ 0.0034895974677056074,
1198
+ 0.0032998654060065746,
1199
+ 0.0031985098030418158,
1200
+ 0.015040447004139423,
1201
+ 0.004169106017798185,
1202
+ 0.015210000798106194,
1203
+ 0.015159747563302517,
1204
+ 0.004115802235901356,
1205
+ 0.003438158193603158,
1206
+ 0.004160440061241388
1207
+ ],
1208
+ "train_runtime": 2288.977719068527,
1209
+ "train_runtime_minutes": 38.14962865114212,
1210
+ "train_steps": 1200,
1211
+ "learning_rate": 5e-05,
1212
+ "beta": 0.1,
1213
+ "lora_r": 2,
1214
+ "lora_alpha": 4,
1215
+ "max_length": 128,
1216
+ "status": "SUCCESS",
1217
+ "proper_dpo_loss": true,
1218
+ "output_dir": "models/falcon_dpo_custom_v2"
1219
+ }