commit 356893868d5f85258307b2dbe2d8b0bbc2bcc3aa Author: ModelHub XC Date: Sat Jun 13 09:46:16 2026 +0800 初始化项目,由ModelHub XC社区提供模型 Model: cs-552-2026-clankers-builder/math_model Source: Original Platform diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..52373fe --- /dev/null +++ b/.gitattributes @@ -0,0 +1,36 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +tokenizer.json filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..c27cd01 --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ +--- +library_name: transformers +model_name: math_grpo_hard2 +tags: +- generated_from_trainer +- grpo +- trl +licence: license +--- + +# Model Card for math_grpo_hard2 + +This model is a fine-tuned version of [None](https://huggingface.co/None). +It has been trained using [TRL](https://github.com/huggingface/trl). + +## Quick start + +```python +from transformers import pipeline + +question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?" +generator = pipeline("text-generation", model="None", device="cuda") +output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0] +print(output["generated_text"]) +``` + +## Training procedure + + + + + +This model was trained with GRPO, a method introduced in [DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models](https://huggingface.co/papers/2402.03300). + +### Framework versions + +- TRL: 1.3.0 +- Transformers: 5.7.0 +- Pytorch: 2.10.0+cu128 +- Datasets: 4.8.5 +- Tokenizers: 0.22.2 + +## Citations + +Cite GRPO as: + +```bibtex +@article{shao2024deepseekmath, + title = {{DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models}}, + author = {Zhihong Shao and Peiyi Wang and Qihao Zhu and Runxin Xu and Junxiao Song and Mingchuan Zhang and Y. K. Li and Y. Wu and Daya Guo}, + year = 2024, + eprint = {arXiv:2402.03300}, +} +``` + +Cite TRL as: + +```bibtex +@software{vonwerra2020trl, + title = {{TRL: Transformers Reinforcement Learning}}, + author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin}, + license = {Apache-2.0}, + url = {https://github.com/huggingface/trl}, + year = {2020} +} +``` \ No newline at end of file diff --git a/chat_template.jinja b/chat_template.jinja new file mode 100644 index 0000000..d96d000 --- /dev/null +++ b/chat_template.jinja @@ -0,0 +1,26 @@ +{#- ChatML template with assistant-generation markers (transformers convention): + wrapping the assistant turn in {% generation %}...{% endgeneration %} lets + apply_chat_template(..., return_assistant_tokens_mask=True) mark the assistant + tokens so assistant_only_loss masks the prompt. Assistant content is passed + through verbatim, so the ... trace in the data is preserved. + A math system prompt is injected (own wording); a caller-supplied system + message, if any, is appended after it. #} +{%- set enable_thinking = true -%} +{%- set sys_instruction = "You are a mathematics problem solver. Work through each problem with brief, focused reasoning: show only the steps that matter, keeping it short when a short path suffices and taking more space only when the problem genuinely needs it. Give the final answer exactly once, enclosed in \\boxed{...}, as the final value in exact form. Put nothing else inside the box (no words, units, or working), and write nothing after it." -%} +{%- if messages|length > 0 and messages[0]['role'] == 'system' %} +{{- '<|im_start|>system\n' + sys_instruction + '\n\n' + messages[0]['content'] + '<|im_end|>\n' }} +{%- set loop_messages = messages[1:] %} +{%- else %} +{{- '<|im_start|>system\n' + sys_instruction + '<|im_end|>\n' }} +{%- set loop_messages = messages %} +{%- endif %} +{%- for message in loop_messages %} +{%- if message['role'] == 'assistant' %} +{{- '<|im_start|>assistant\n' }}{% generation %}{{ message['content'] }}{{ '<|im_end|>' }}{% endgeneration %}{{ '\n' }} +{%- else %} +{{- '<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>\n' }} +{%- endif %} +{%- endfor %} +{%- if add_generation_prompt %} +{{- '<|im_start|>assistant\n' }} +{%- endif %} diff --git a/config.json b/config.json new file mode 100644 index 0000000..1d219d6 --- /dev/null +++ b/config.json @@ -0,0 +1,63 @@ +{ + "architectures": [ + "Qwen3ForCausalLM" + ], + "attention_bias": false, + "attention_dropout": 0.0, + "bos_token_id": null, + "dtype": "bfloat16", + "eos_token_id": 151645, + "head_dim": 128, + "hidden_act": "silu", + "hidden_size": 2048, + "initializer_range": 0.02, + "intermediate_size": 6144, + "layer_types": [ + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention", + "full_attention" + ], + "max_position_embeddings": 40960, + "max_window_layers": 28, + "model_type": "qwen3", + "num_attention_heads": 16, + "num_hidden_layers": 28, + "num_key_value_heads": 8, + "pad_token_id": 151643, + "rms_norm_eps": 1e-06, + "rope_parameters": { + "rope_theta": 1000000, + "rope_type": "default" + }, + "sliding_window": null, + "tie_word_embeddings": true, + "transformers_version": "5.7.0", + "use_cache": false, + "use_sliding_window": false, + "vocab_size": 151936 +} diff --git a/generation_config.json b/generation_config.json new file mode 100644 index 0000000..5ec133d --- /dev/null +++ b/generation_config.json @@ -0,0 +1,12 @@ +{ + "do_sample": true, + "eos_token_id": [ + 151645, + 151643 + ], + "pad_token_id": 151643, + "temperature": 0.6, + "top_k": 20, + "top_p": 0.95, + "transformers_version": "5.7.0" +} diff --git a/grpo_metrics.csv b/grpo_metrics.csv new file mode 100644 index 0000000..2fa479f --- /dev/null +++ b/grpo_metrics.csv @@ -0,0 +1,101 @@ +step,clip_ratio/high_max,clip_ratio/high_mean,clip_ratio/low_mean,clip_ratio/low_min,clip_ratio/region_mean,completions/clipped_ratio,completions/max_length,completions/max_terminated_length,completions/mean_length,completions/mean_terminated_length,completions/min_length,completions/min_terminated_length,entropy,epoch,frac_reward_zero_std,grad_norm,kl,learning_rate,loss,num_tokens,reward,reward_std,rewards/reward_accuracy/mean,rewards/reward_accuracy/std,rewards/reward_format/mean,rewards/reward_format/std,sampling/importance_sampling_ratio/max,sampling/importance_sampling_ratio/mean,sampling/importance_sampling_ratio/min,sampling/sampling_logp_difference/max,sampling/sampling_logp_difference/mean,step_time,total_flos,train_loss,train_runtime,train_samples_per_second,train_steps_per_second +5,1.8202999854111113e-06,1.8202999854111113e-06,3.360727114340989e-05,3.360727114340989e-05,3.5427571128821e-05,0.3625,8192.0,7765.4,6058.75,4852.174462890625,1945.6,1945.6,0.574665331095457,0.01,0.5,0.008172421716153622,0.00025671029870864,3.3333333333333333e-06,-0.01722303032875061,498612.0,0.4400000274181366,0.519529151916504,0.375,0.49093450903892516,0.06500000059604645,0.04838244691491127,1.3507643461227417,0.50352264046669,0.0014046101595340589,0.37215194702148435,0.019513686001300812,122.85884248404182,,,,, +10,3.5473650677886325e-05,3.5473650677886325e-05,3.72200916899601e-05,3.72200916899601e-05,7.269374236784643e-05,0.475,8192.0,6900.6,6269.825,4657.9345703125,2313.6,2313.6,0.4328163731843233,0.02,0.25,0.002034005243331194,0.0003170646403305,4.999545027448198e-06,-0.020424273610115052,1014690.0,0.3937500089406967,0.4722380757331848,0.3375,0.44294117093086244,0.05625000074505806,0.04757215455174446,1.4471368074417115,0.5967340409755707,0.001643385784700513,0.4247224569320679,0.018445834144949914,126.08913078857586,,,,, +15,3.3082408663176466e-05,3.3082408663176466e-05,3.115992294624448e-05,3.115992294624448e-05,6.424233160942094e-05,0.3375,8192.0,6949.2,5336.6375,4057.469775390625,1831.6,1831.6,0.5718966577202081,0.03,0.3,0.04103633388876915,0.000431221313556307,4.996765239312762e-06,0.0011141465976834298,1456385.0,0.4300000160932541,0.44599581360816953,0.3625,0.424577522277832,0.06750000305473805,0.041551146656274796,1.2535356760025025,0.5066587328910828,0.006168531130242627,0.41926112174987795,0.019396945461630823,119.63967538921278,,,,, +20,3.0405540383071638e-05,3.0405540383071638e-05,4.6043536531215065e-05,4.6043536531215065e-05,7.64490769142867e-05,0.35,8192.0,7370.4,5721.7875,4345.7984375,1954.2,1954.2,0.5724710553884507,0.04,0.35,0.024662701413035393,0.00041048735329241026,4.991461232516675e-06,-0.040793496370315555,1928068.0,0.44250001311302184,0.5130745053291321,0.375,0.4845838785171509,0.06750000044703483,0.04506817422807217,1.3120901823043822,0.49034562706947327,0.0012844768119975925,0.47126431465148927,0.018085771799087526,119.75899532779586,,,,, +25,2.2433462800108827e-05,2.2433462800108827e-05,3.57343080395367e-05,3.57343080395367e-05,5.8167770839645526e-05,0.3875,8192.0,7331.0,6014.7375,4822.21396484375,2215.6,2215.6,0.5588238757103682,0.05,0.45,0.026462681591510773,0.0004064168006152613,4.983638369387449e-06,-0.02026093751192093,2422699.0,0.3012500166893005,0.45353304743766787,0.2375,0.42986373901367186,0.06375000104308129,0.04866772294044495,1.3227676630020142,0.5377194225788117,0.0004843653689022176,0.4240714073181152,0.019181088730692863,123.16551057061297,,,,, +30,1.284240552195115e-05,1.284240552195115e-05,2.30372268561041e-05,2.30372268561041e-05,3.587963237805525e-05,0.3375,8192.0,7300.2,5789.8125,4664.650537109375,2362.2,2362.2,0.5676289755851031,0.06,0.45,0.0012027962366119027,0.0004349491646280512,4.973304558805254e-06,-0.04917573630809784,2899308.0,0.43125002831220627,0.39676983952522277,0.3625,0.37955816388130187,0.06875000223517418,0.03821143731474876,1.6597910881042481,0.5028089359402657,0.0004162935415024549,0.3881256103515625,0.018960357829928397,119.61670873281545,,,,, +35,1.2639537089853548e-05,1.2639537089853548e-05,2.5214968991349453e-05,2.5214968991349453e-05,3.7854506081203e-05,0.35,8192.0,7578.4,5993.525,4716.707421875,2064.2,2064.2,0.5268674351274967,0.07,0.4,0.02076824940741062,0.00040279955210280604,4.9604702482070765e-06,-0.048050296306610105,3391830.0,0.40500000715255735,0.4951854467391968,0.3375,0.4715570867061615,0.0675000011920929,0.04246281646192074,1.4117723464965821,0.5106466501951218,0.004903609637767659,0.4109489440917969,0.017613581940531732,123.08690441743238,,,,, +40,9.795703226700425e-06,9.795703226700425e-06,2.225875941803679e-05,2.225875941803679e-05,3.205446264473721e-05,0.425,8192.0,7469.6,5876.8375,4418.398291015625,2088.8,2088.8,0.4608573392033577,0.08,0.1,0.0017857414204627275,0.00035680579458130524,4.945148413024405e-06,0.03400298058986664,3875637.0,0.45125000178813934,0.4411172091960907,0.3875,0.4198047935962677,0.06375000029802322,0.039574272185564044,1.3218390941619873,0.5539643287658691,0.00021232454455457627,0.38655314445495603,0.017396847903728484,126.49935151039972,,,,, +45,2.723430352489231e-05,2.723430352489231e-05,6.146172472654143e-05,6.146172472654143e-05,8.869602825143375e-05,0.3625,8192.0,7389.2,5656.8,4190.60595703125,1648.6,1648.6,0.5831414416432381,0.09,0.25,0.021605009213089943,0.00043668938451446593,4.927354543565131e-06,-0.0809471607208252,4342461.0,0.46500001549720765,0.5279096782207489,0.4,0.4976613104343414,0.06500000134110451,0.04758143797516823,1.3430421352386475,0.500576502084732,0.0003042887576157227,0.3666956424713135,0.019319421052932738,120.130582918023,,,,, +50,2.2544995954376645e-05,2.2544995954376645e-05,5.4482336054206826e-05,5.4482336054206826e-05,7.702733200858347e-05,0.3125,8192.0,7125.0,5966.95,4951.057373046875,2317.6,2317.6,0.6207670405507087,0.1,0.2,0.010959322564303875,0.0004935289041895885,4.907106629352906e-06,-0.014368648827075958,4835721.0,0.4725000262260437,0.5271356463432312,0.4,0.5014917850494385,0.07250000312924385,0.04434101730585098,1.0183821439743042,0.38383259773254397,0.0003332616764396334,0.8397713661193847,0.020186826586723328,122.75810386820812,,,,, +55,1.3066547944617924e-05,1.3066547944617924e-05,6.746389699401334e-05,6.746389699401334e-05,8.053044493863126e-05,0.225,8192.0,7290.4,5091.625,4292.12529296875,1835.6,1835.6,0.603054741024971,0.11,0.4,0.0019220999674871564,0.0004994974187866319,4.884425140939826e-06,-0.012480614334344864,5256667.0,0.47125000357627866,0.49476287961006166,0.3875,0.4821143627166748,0.08375000208616257,0.03097984455525875,1.2093276500701904,0.3782086312770844,0.0008984085667179898,0.4456318855285645,0.017469033226370813,113.9183534666081,,,,, +60,2.045815890596714e-05,2.045815890596714e-05,3.554932682163781e-05,3.554932682163781e-05,5.600748572760494e-05,0.3,8192.0,7314.4,5699.35,4795.439599609375,2288.4,2288.4,0.6140377227216959,0.12,0.35,0.006267687305808067,0.0004944768887071404,4.85933300921078e-06,0.0016481917351484298,5727531.0,0.49000002443790436,0.45007477402687074,0.4125,0.43382447957992554,0.07750000357627869,0.03820276893675327,1.3338852643966674,0.45931013822555544,0.00025033787305801526,0.41997461318969725,0.019094375520944597,120.2862067324284,,,,, +65,2.4331859276571776e-05,2.4331859276571776e-05,4.4709287612931804e-05,4.4709287612931804e-05,6.904114688950358e-05,0.4125,8192.0,7479.0,6143.9125,4734.66064453125,2565.2,2565.2,0.5002438832074404,0.13,0.3,0.03142112120985985,0.00040860425287974066,4.831855602200436e-06,-0.05352354049682617,6233196.0,0.5150000214576721,0.5349964261054992,0.45,0.5014917850494385,0.06500000059604645,0.04813043251633644,1.6457793712615967,0.5801044702529907,0.000991974418866448,0.3975727081298828,0.01867261379957199,122.30202017321135,,,,, +70,2.7318491265759804e-05,2.7318491265759804e-05,7.482641558453906e-05,7.482641558453906e-05,0.00010214490685029886,0.25,8192.0,7424.6,5752.5625,5002.562109375,2252.8,2252.8,0.6517292812466622,0.14,0.15,0.00916771125048399,0.000537874702422414,4.802020699446264e-06,-0.04388110637664795,6707433.0,0.507500022649765,0.4922804653644562,0.425,0.47653159499168396,0.08250000178813935,0.037782103195786475,1.5332417726516723,0.48794538974761964,0.0006424027102184482,0.6952187538146972,0.019618318229913712,119.15082893596846,,,,, +75,3.4678335941862316e-05,3.4678335941862316e-05,5.164916183275637e-06,5.164916183275637e-06,3.984325212513795e-05,0.4875,8192.0,7421.4,6410.05,4822.013134765625,2869.6,2869.6,0.4385225422680378,0.15,0.4,0.04284990206360817,0.00035060268455708863,4.769858463903551e-06,-0.02607675492763519,7234049.0,0.40500000715255735,0.5114702582359314,0.35,0.4758143723011017,0.05500000044703483,0.050821858644485476,1.7169564485549926,0.6561440050601959,0.0022023689863260643,0.5821202754974365,0.017488974519073962,135.61241774818626,,,,, +80,2.3385195709124675e-05,2.3385195709124675e-05,5.086141973151825e-05,5.086141973151825e-05,7.424661544064293e-05,0.425,8192.0,7491.8,6448.7625,5113.13818359375,2281.4,2281.4,0.46184202171862127,0.16,0.1,0.01054453942924738,0.0004036996342620114,4.735401411450779e-06,-0.009185626357793807,7765746.0,0.43875001221895216,0.46674038767814635,0.375,0.44191223978996275,0.06375000104308129,0.04497101604938507,1.1380637168884278,0.5096841633319855,0.005406209687862429,0.4316697120666504,0.0185539860278368,137.45135979601181,,,,, +85,3.355303924763575e-05,3.355303924763575e-05,2.2209925555216613e-05,2.2209925555216613e-05,5.576296480285237e-05,0.3,8192.0,7561.2,5664.85,4596.00859375,2053.2,2053.2,0.591191739961505,0.17,0.3,0.03600028529763222,0.0004977093271008925,4.698684378016223e-06,-0.05263767838478088,8233602.0,0.501250022649765,0.5100330412387848,0.425,0.48803112506866453,0.07625000327825546,0.04278210401535034,1.7039773225784303,0.4907322645187378,1.3682090502697974e-05,0.42915120124816897,0.018964889645576476,118.67458291060757,,,,, +90,2.6171543140662834e-05,2.6171543140662834e-05,7.294147835636977e-05,7.294147835636977e-05,9.91130214970326e-05,0.4,8192.0,7274.6,5874.6875,4229.07001953125,1641.0,1641.0,0.5138535428792238,0.18,0.3,0.003359677270054817,0.00043785940433735957,4.659744484358975e-06,-0.03218139708042145,8718913.0,0.47500002682209014,0.4921759247779846,0.4125,0.46192690134048464,0.06250000223517418,0.04525207281112671,1.0257616758346557,0.5342037558555603,0.0004481923441971958,0.47718358039855957,0.019260750710964204,123.77055773041793,,,,, +95,2.0229655638104306e-05,2.0229655638104306e-05,2.357565826969221e-05,2.357565826969221e-05,4.380531390779652e-05,0.275,8192.0,7067.6,5424.175,4364.646142578125,1906.2,1906.2,0.6171013407409192,0.19,0.4,0.002601415617391467,0.0005215987355768447,4.618621098540023e-06,-0.006510930508375168,9167907.0,0.526250010728836,0.5195042729377747,0.45,0.4964244604110718,0.07625000178813934,0.04094573967158795,1.5551961183547973,0.44654555022716524,0.0005114793872337487,0.6569420337677002,0.01849379576742649,116.79370693121454,,,,, +100,1.9229022473155056e-05,1.9229022473155056e-05,5.497289857885335e-05,5.497289857885335e-05,7.42019210520084e-05,0.3375,8192.0,7350.8,6103.8,5048.34462890625,2710.4,2710.4,0.5273807305842638,0.2,0.3,0.009238976053893566,0.0004698142263805494,4.575355796121313e-06,0.0038510821759700775,9669959.0,0.5312500238418579,0.5414493441581726,0.4625,0.5106881022453308,0.06875000223517418,0.04588207229971886,1.2177016019821167,0.4757587730884552,0.0009813458658754826,0.3563568115234375,0.018425538018345834,120.95411625502166,,,,, +105,1.4260978241509293e-05,1.4260978241509293e-05,2.6855832038563678e-05,2.6855832038563678e-05,4.111681028007297e-05,0.2875,8192.0,7350.2,5420.5125,4374.838427734375,2097.2,2097.2,0.5883231095969677,0.21,0.4,0.01078658178448677,0.0004984981591405812,4.529992318133041e-06,-0.02412937730550766,10117756.0,0.5625000357627868,0.5152094006538391,0.4875,0.49012446999549864,0.07500000149011612,0.04182775355875492,1.123892569541931,0.39641003012657167,1.510005513409851e-05,0.3866060733795166,0.018447814509272575,116.84375341918204,,,,, +110,4.1290789704362395e-05,4.1290789704362395e-05,3.685730625875294e-05,3.685730625875294e-05,7.814809596311534e-05,0.4625,8192.0,7485.0,6500.1375,5193.12568359375,3138.6,3138.6,0.425935972481966,0.22,0.15,0.019017726182937622,0.00037650560516340193,4.482576526851663e-06,-0.037353801727294925,10651935.0,0.3550000160932541,0.4804716110229492,0.3,0.44795785546302797,0.05500000044703483,0.050327956676483154,1.2635931968688965,0.6159933567047119,0.0008401243535445246,0.5356506824493408,0.01786075197160244,127.36833790921374,,,,, +115,2.6301473735657054e-05,2.6301473735657054e-05,3.864439368044259e-05,3.864439368044259e-05,6.494586741609965e-05,0.3875,8192.0,7502.6,5926.0,4475.976904296875,2048.6,2048.6,0.5646404441446066,0.23,0.3,0.005601789802312851,0.00045991237166163044,4.433156359433334e-06,-0.00682046040892601,11139355.0,0.4000000268220901,0.5044266760349274,0.3375,0.47538756132125853,0.06250000074505806,0.04925939738750458,1.1046435117721558,0.47510846257209777,0.001102504279697314,0.3814427852630615,0.01957627609372139,120.66217719240812,,,,, +120,3.654555021057604e-05,3.654555021057604e-05,3.7074185274832414e-05,3.7074185274832414e-05,7.361973548540846e-05,0.3375,8192.0,6916.0,5469.5,4125.629638671875,1891.8,1891.8,0.5191684264689684,0.24,0.25,0.03301943466067314,0.00045386029123619667,4.381781779449659e-06,-0.03507390022277832,11590563.0,0.48000002205371856,0.4793850839138031,0.4125,0.4522151410579681,0.06750000193715096,0.04514051079750061,1.307533049583435,0.5743105709552765,0.0009648994024246349,0.44085910320281985,0.01795155182480812,117.90082389939343,,,,, +125,2.6236868325213437e-05,2.6236868325213437e-05,3.5434539313428104e-05,3.5434539313428104e-05,6.167140763864154e-05,0.5,8192.0,7372.0,6808.8375,5519.86982421875,3462.4,3462.4,0.38315006494522097,0.25,0.2,0.011544051580131054,0.00034536719249445014,4.328504726374733e-06,-0.004982107132673263,12149566.0,0.37875001728534696,0.47552616596221925,0.325,0.44433724880218506,0.05375000089406967,0.04766708761453629,1.5557713508605957,0.6740909337997436,6.833511779404943e-05,0.4073486328125,0.01711887903511524,131.91712575883722,,,,, +130,1.564934918860672e-05,1.564934918860672e-05,5.51164925127523e-05,5.51164925127523e-05,7.076584170135902e-05,0.2625,8192.0,7738.4,5588.7375,4739.348193359375,2263.8,2263.8,0.6880752384662628,0.26,0.15,0.018013285472989082,0.0005678258854459273,4.273379063074574e-06,-0.011178897321224212,12611193.0,0.5500000238418579,0.5294971942901612,0.475,0.5049390316009521,0.07500000223517418,0.03610352948307991,1.3245630264282227,0.42547842860221863,0.0023973748844582587,0.37795424461364746,0.019581086561083795,119.4581795729755,,,,, +135,1.554997288621962e-05,1.554997288621962e-05,2.503200576029485e-05,2.503200576029485e-05,4.058197864651447e-05,0.3125,8192.0,7771.4,5612.2,4531.295361328125,1736.4,1736.4,0.5737913016229867,0.27,0.5,0.004973565693944693,0.0005054782930528745,4.216460521351993e-06,-0.03292405307292938,13074885.0,0.5362499952316284,0.5164401650428772,0.4625,0.4917445480823517,0.07375000193715095,0.0404684666544199,1.2061967849731445,0.4395827651023865,0.0005638472874125,0.5075300693511963,0.018637650087475775,119.03955138041638,,,,, +140,1.2215909191581886e-05,1.2215909191581886e-05,2.1647735775331966e-05,2.1647735775331966e-05,3.386364496691385e-05,0.4875,8192.0,6795.4,6326.2375,4899.119482421875,3261.0,3261.0,0.450267980620265,0.28,0.3,0.0030044340528547764,0.0003927019835828105,4.1578066456019885e-06,-0.002959715574979782,13593960.0,0.2662500001490116,0.3676936410367489,0.2125,0.3416578650474548,0.05375000163912773,0.04538746103644371,1.4601285219192506,0.619872099161148,0.00038315254605549855,0.43017098903656004,0.018805389851331712,126.11548234563088,,,,, +145,3.8803822462796234e-05,3.8803822462796234e-05,3.742954049812397e-05,3.742954049812397e-05,7.62333629609202e-05,0.125,7897.4,7729.0,5294.9,4919.14951171875,1987.8,1987.8,0.6786274705082178,0.29,0.35,0.005746732000261545,0.0006359544961014763,4.09747673463462e-06,-0.03015437126159668,14030800.0,0.7275000214576721,0.4970154225826263,0.6375,0.4821143627166748,0.09000000208616257,0.025775573402643203,1.6099678516387939,0.30174939036369325,3.694679644468124e-05,0.40121822357177733,0.01853719390928745,111.10662075065775,,,,, +150,1.9890878320438787e-05,1.9890878320438787e-05,6.533774903800804e-05,6.533774903800804e-05,8.522862735844683e-05,0.25,8122.2,7186.0,5679.1375,4842.37470703125,2447.8,2447.8,0.6152491692453623,0.3,0.25,0.005438638851046562,0.0005633259774185717,4.0355317817241705e-06,0.015135173499584199,14499427.0,0.6150000214576721,0.5078305840492249,0.5375,0.48539391756057737,0.07750000208616256,0.03658080250024796,1.015412652492523,0.3946915328502655,0.0009622122642667819,0.4614942014217377,0.01884023267775774,116.65558006779756,,,,, +155,3.596069818740943e-05,3.596069818740943e-05,5.489033319463488e-05,5.489033319463488e-05,9.085103138204432e-05,0.3,8192.0,7370.6,5508.8125,4356.28115234375,1910.6,1910.6,0.549971715733409,0.31,0.3,0.008178921416401863,0.0004968369779817294,3.972034412945212e-06,-0.010275726020336152,14954612.0,0.41125001907348635,0.4875848054885864,0.3375,0.4669942259788513,0.07375000193715095,0.04190875850617885,1.731394386291504,0.5271886050701141,0.003029103740118444,0.4919108748435974,0.018122521974146367,117.55860125616891,,,,, +160,2.294454698130721e-05,2.294454698130721e-05,3.568523570720572e-05,3.568523570720572e-05,5.862978268851293e-05,0.3125,8192.0,7467.6,5743.45,4728.31171875,2303.0,2303.0,0.599287199601531,0.32,0.35,0.0033120806328952312,0.0005146465915458976,3.907048823857924e-06,0.011207569390535355,15428240.0,0.6000000238418579,0.5161332726478577,0.525,0.49093450903892516,0.07500000149011612,0.03763653039932251,1.0152330636978149,0.39893455505371095,1.3009777103434316e-05,0.4407810211181641,0.018996737897396088,120.08523558820598,,,,, +165,2.779661099339137e-05,2.779661099339137e-05,4.506476307142293e-05,4.506476307142293e-05,7.28613740648143e-05,0.4,8054.0,7622.6,6040.375,4927.23671875,2651.8,2651.8,0.5654774803668261,0.33,0.25,0.0032441578805446625,0.0004772282743942924,3.840640714606664e-06,-0.021604833006858826,15924870.0,0.413750022649765,0.46951574087142944,0.35,0.4448446035385132,0.06375000178813935,0.03984713554382324,1.3186047315597533,0.5375189572572708,0.000426299426908372,0.3978080749511719,0.01916961409151554,123.14168536277721,,,,, +170,4.54970855571446e-05,4.54970855571446e-05,4.4004415758536195e-05,4.4004415758536195e-05,8.95015013156808e-05,0.3625,8192.0,7133.8,5822.9375,4797.60986328125,2722.8,2722.8,0.5497448619455099,0.34,0.15,0.021004075184464455,0.0004874424692388857,3.7728772234974082e-06,-0.0044544443488121034,16404705.0,0.4812500238418579,0.5222216486930847,0.4125,0.4968512713909149,0.06875000149011612,0.04309281595051288,1.3322480916976929,0.498993855714798,6.507105117634638e-05,0.4418018341064453,0.018851489573717118,122.93443911900977,,,,, +175,2.3695463823969476e-05,2.3695463823969476e-05,3.2482052847626616e-05,3.2482052847626616e-05,5.617751667159609e-05,0.35,8192.0,7568.8,5683.7375,4465.197216796875,1798.8,1798.8,0.5232274368405342,0.35,0.3,0.024746615439653397,0.0004719331373053137,3.7038268591212245e-06,-0.014183525741100312,16873568.0,0.5475000232458115,0.492523717880249,0.475,0.4665252387523651,0.07250000089406967,0.04288348145782948,1.233275580406189,0.5102285832166672,0.002930662943981588,0.36157979965209963,0.017905095405876637,122.28689341261051,,,,, +180,3.454050529398956e-05,3.454050529398956e-05,4.461912922124611e-05,4.461912922124611e-05,7.915963451523566e-05,0.4125,8192.0,7949.4,6296.0,4977.90927734375,1774.0,1774.0,0.4729907963424921,0.36,0.1,0.0031059617176651955,0.0004331560412538238,3.6335594310923835e-06,-0.024637745320796968,17392188.0,0.4125000238418579,0.4888968825340271,0.35,0.4598136007785797,0.06250000149011611,0.048037723451852796,1.0,0.5006750881671905,0.00020895492198178545,0.42861623764038087,0.01891116350889206,127.81916067299899,,,,, +185,3.6199189526087136e-05,3.6199189526087136e-05,6.23755202468601e-05,6.23755202468601e-05,9.857470977294724e-05,0.3625,8192.0,7847.4,5988.375,4782.924072265625,2315.4,2315.4,0.5157114423811435,0.37,0.3,0.02036646194756031,0.0004641876155801583,3.5621459794711487e-06,-0.03511067032814026,17884542.0,0.4037500202655792,0.49165999293327334,0.3375,0.4669942259788513,0.06625000163912773,0.04715570956468582,1.2853135108947753,0.4750758409500122,0.00026832737785298377,0.4572484254837036,0.018116530776023865,121.16637410558761,,,,, +190,1.6212045920838136e-05,1.6212045920838136e-05,5.93830840443843e-05,5.93830840443843e-05,7.559512996522245e-05,0.325,8192.0,7446.4,5949.1625,4854.777734375,2278.8,2278.8,0.5266337383538484,0.38,0.2,0.0030554498080164194,0.0004941905372106703,3.4896587029425903e-06,-0.05616792440414429,18375607.0,0.5250000178813934,0.5321696043014527,0.45,0.5082185864448547,0.07500000298023224,0.04341210350394249,1.1901474952697755,0.4625358819961548,0.0002117627714142145,0.41130895614624025,0.018382025137543678,120.6274171179859,,,,, +195,1.9678883654705713e-05,1.9678883654705713e-05,3.5256768569524866e-05,3.5256768569524866e-05,5.493565222423058e-05,0.225,8068.4,7394.2,5301.3375,4445.436669921875,1870.2,1870.2,0.6713309489190579,0.39,0.4,0.015568062663078308,0.0006114991374488454,3.4161708858240285e-06,-0.03910548090934753,18814638.0,0.6287500143051148,0.5332733035087586,0.55,0.5098386645317078,0.0787500023841858,0.03471478223800659,1.3509485483169557,0.4068299651145935,0.00028986867109779266,0.35910754203796386,0.01982168070971966,114.08279155234341,,,,, +200,4.4428689761844e-05,4.4428689761844e-05,2.883135930460412e-05,2.883135930460412e-05,7.326004906644812e-05,0.325,8192.0,7389.2,5450.2375,4274.701708984375,1938.4,1938.4,0.5906863190233708,0.4,0.3,0.006432582624256611,0.0005249851932603633,3.341756823974913e-06,-0.030380022525787354,19265629.0,0.5825000166893005,0.4885362982749939,0.5125,0.464055722951889,0.07000000104308128,0.03590286336839199,1.3503808975219727,0.4682337284088135,0.0001299768081480579,0.4917703628540039,0.019228558987379074,118.649300396943,,,,, +205,1.8069518228003288e-05,1.8069518228003288e-05,3.2441976145491935e-05,3.2441976145491935e-05,5.0511494373495224e-05,0.4875,8192.0,7233.6,6289.675,4403.23232421875,2271.0,2271.0,0.48734829351305964,0.41,0.35,0.014308848418295383,0.00042076953977812084,3.266491749684039e-06,-0.020115099847316742,19783431.0,0.4250000208616257,0.44544405341148374,0.3625,0.41652523875236513,0.06250000149011611,0.048586717993021014,1.3434699058532715,0.5912031173706055,3.1612097518518564e-05,0.3720562934875488,0.02067929208278656,126.4003007558058,,,,, +210,1.9638695084722714e-05,1.9638695084722714e-05,4.627011294360273e-05,4.627011294360273e-05,6.590880802832544e-05,0.4125,8192.0,7101.0,5977.3125,4383.633935546875,1417.6,1417.6,0.4744558151811361,0.42,0.25,0.008889109827578068,0.0004530015998170711,3.19045175561003e-06,-0.028174108266830443,20276712.0,0.31000001430511476,0.4626086175441742,0.25,0.4376104474067688,0.06000000089406967,0.04960018470883369,1.2077926397323608,0.5609057605266571,0.005194424244837137,0.3596042633056641,0.019289950281381606,122.2387731901952,,,,, +215,1.5743866242701188e-05,1.5743866242701188e-05,3.4589840106491464e-05,3.4589840106491464e-05,5.033370634919265e-05,0.275,8192.0,7781.2,5845.775,5009.54736328125,2143.0,2143.0,0.6225049201399088,0.43,0.35,0.00042672856943681836,0.0005581975467066514,3.1137137178519983e-06,-0.019156302511692046,20761206.0,0.476250022649765,0.4679434061050415,0.4,0.4489001095294952,0.07625000178813934,0.04183281697332859,1.5152719020843506,0.4221655011177063,0.00020937439658155199,0.3944818675518036,0.019429182261228563,121.71448142548324,,,,, +220,4.981785405107075e-05,4.981785405107075e-05,7.638629904249683e-05,7.638629904249683e-05,0.0001262041530935676,0.275,8192.0,7410.4,5457.825,4480.19765625,2293.4,2293.4,0.7026309721171856,0.44,0.1,0.03710753098130226,0.0005922440592257772,3.0363552182281464e-06,0.010030096024274826,21213248.0,0.5025000274181366,0.5258173286914826,0.425,0.5047713398933411,0.07750000208616256,0.04140708856284618,1.3938607454299927,0.4408378839492798,0.00034421747477608733,0.42920374870300293,0.02024696059525013,117.76221445738338,,,,, +225,1.8373334569332656e-05,1.8373334569332656e-05,4.430211956787389e-05,4.430211956787389e-05,6.267545413720654e-05,0.3125,8192.0,7481.4,5839.375,4741.25908203125,1911.0,1911.0,0.5262974351644516,0.45,0.2,0.005031016655266285,0.0004940792954585049,2.9584544658408907e-06,-0.017215946316719057,21695258.0,0.5275000154972076,0.4733348906040192,0.45,0.45396130084991454,0.0775000013411045,0.03971478156745434,1.3549537897109984,0.46117433309555056,0.0004707914515165612,0.36946535110473633,0.01802418828010559,120.80502305862028,,,,, +230,4.2064700392074886e-05,4.2064700392074886e-05,2.2449126845458522e-05,2.2449126845458522e-05,6.451382723753341e-05,0.4125,8192.0,7381.4,6459.25,5224.5146484375,2725.6,2725.6,0.43519392125308515,0.46,0.25,0.0038728024810552597,0.00042350891490059437,2.880090218007802e-06,-7.327462080866098e-05,22224906.0,0.46625002920627595,0.455664724111557,0.4,0.42883480787277223,0.0662500023841858,0.04682775363326073,1.4119407653808593,0.5160943508148194,0.0004572016565361992,0.41447465419769286,0.017171837948262693,125.26045417560962,,,,, +235,2.2768243616155816e-05,2.2768243616155816e-05,3.061207389691845e-05,3.061207389691845e-05,5.338031751307426e-05,0.5125,8192.0,7915.8,6944.65,5643.67041015625,2559.4,2559.4,0.37212447002530097,0.47,0.15,0.0035218512639403343,0.00034967674982908645,2.8013417006383078e-06,-0.006900763511657715,22794102.0,0.3637499988079071,0.478201687335968,0.3125,0.4433173418045044,0.05125000029802322,0.05106880962848663,1.0166965007781983,0.5553529441356659,0.00016404517664341255,0.38683161735534666,0.0173927241936326,134.1244938455755,,,,, +240,3.543601287674392e-05,3.543601287674392e-05,5.545660660573048e-05,5.545660660573048e-05,9.08926194824744e-05,0.3375,8192.0,7574.6,5822.0625,4642.919189453125,1764.8,1764.8,0.5724662147462368,0.48,0.1,0.011431275866925716,0.0005028383853641572,2.722288528136642e-06,-0.04328879415988922,23274439.0,0.3950000092387199,0.3978291995823383,0.325,0.36908757090568545,0.07000000178813934,0.04594573974609375,1.4515883922576904,0.4798829138278961,0.00029359117834246715,0.5218585968017578,0.018647559732198716,120.6310249778442,,,,, +245,9.34955878619803e-06,9.34955878619803e-06,3.6169881059322503e-05,3.6169881059322503e-05,4.5519439845520536e-05,0.375,8192.0,6991.0,5803.425,4422.046630859375,1985.6,1985.6,0.497342137992382,0.49,0.4,0.005734769161790609,0.00045860696700401605,2.6430106229120374e-06,-0.0426891952753067,23752129.0,0.5650000035762787,0.5062865614891052,0.5,0.47636529207229616,0.06500000134110451,0.04082185849547386,1.3509728908538818,0.5086940228939056,0.00032651093788444997,0.37037196159362795,0.018371764197945596,120.79511045719264,,,,, +250,2.6339892247051467e-05,2.6339892247051467e-05,7.727497722953558e-06,7.727497722953558e-06,3.406738997000502e-05,0.4375,8192.0,7963.0,6356.825,4934.31103515625,2588.0,2588.0,0.5020614795386791,0.5,0.35,0.0016981191001832485,0.0004371757953776978,2.5635881345775188e-06,-0.013918653130531311,24275407.0,0.4225000083446503,0.5092166781425476,0.3625,0.4766244113445282,0.06000000014901161,0.04845838770270348,1.047420859336853,0.5131308615207673,0.0004111783728149021,0.4257497787475586,0.01935126893222332,127.6163847177988,,,,, +255,8.337607323483098e-06,8.337607323483098e-06,5.5061916646081956e-05,5.5061916646081956e-05,6.339952396956505e-05,0.5,8192.0,6437.6,6294.9,4469.8703125,2555.8,2555.8,0.4556464351713657,0.51,0.2,0.0017783425282686949,0.0003989165554230567,2.484101358918998e-06,-0.039493054151535034,24795543.0,0.33375000655651094,0.4712320029735565,0.275,0.44341015815734863,0.05875000134110451,0.05006817430257797,1.4274817943572997,0.6192527294158936,0.0022845677031000378,0.7983517646789551,0.01986144334077835,127.2114591360325,,,,, +260,1.5622470164089465e-05,1.5622470164089465e-05,5.299898784869583e-05,5.299898784869583e-05,6.86214580127853e-05,0.3375,8192.0,7358.8,5824.1625,4658.4791015625,2071.2,2071.2,0.5859630335122347,0.52,0.15,0.005820761900395155,0.0005098105619254056,2.404630656716588e-06,-0.053452908992767334,25275648.0,0.42875000834465027,0.5089376151561738,0.3625,0.4821143627166748,0.06625000014901161,0.0451491791754961,1.7641240358352661,0.5476802587509155,9.690146939647092e-05,0.3966010570526123,0.01949632465839386,121.5771759850555,,,,, +265,2.0790939197468104e-05,2.0790939197468104e-05,7.626753267686581e-05,7.626753267686581e-05,9.705847187433392e-05,0.4,8192.0,7533.2,6274.3125,5184.31826171875,2476.8,2476.8,0.5663282681256533,0.53,0.15,0.006341112777590752,0.0004683365626988234,2.3252563725002108e-06,0.009703925997018813,25793241.0,0.40500001311302186,0.4865875065326691,0.3375,0.46444705724716184,0.0675000011920929,0.04288348145782948,1.5432483196258544,0.5326257467269897,7.115423895811545e-05,0.4362502694129944,0.019344688393175602,127.07092954120598,,,,, +270,3.005846137966728e-05,3.005846137966728e-05,3.654418942460325e-05,3.654418942460325e-05,6.660265080427052e-05,0.375,8192.0,7400.4,5806.0375,4559.125,2518.2,2518.2,0.4848801579326391,0.54,0.45,0.0014343225630000234,0.00044225924284546636,2.246058753321628e-06,-0.012462051212787628,26272224.0,0.44125000238418577,0.4984263241291046,0.375,0.4732520401477814,0.0662500023841858,0.043909553438425064,1.1136229038238525,0.449265730381012,0.005307525000534952,0.44452977180480957,0.017377937398850917,121.7903360599652,,,,, +275,7.83611903898418e-06,7.83611903898418e-06,1.4990840827522334e-05,1.4990840827522334e-05,2.2826959866506514e-05,0.2625,8192.0,6817.6,5216.5625,4392.8333984375,1879.6,1879.6,0.7293284885585308,0.55,0.45,0.05166115611791611,0.0006034233505488373,2.1671178676250236e-06,-0.022269336879253386,26704225.0,0.5112500250339508,0.5054790198802948,0.4375,0.4813549637794495,0.07375000119209289,0.03746281638741493,1.9086509704589845,0.4772552639245987,0.00045376482576102716,0.4093015193939209,0.02079707570374012,118.14562470602104,,,,, +280,2.8337625190033576e-05,2.8337625190033576e-05,3.650043636298506e-05,3.650043636298506e-05,6.483806155301863e-05,0.4,8192.0,7331.0,6235.4375,4917.7337890625,2579.4,2579.4,0.5494415625929833,0.56,0.3,0.010450364090502262,0.00046660726693517065,2.088513524298165e-06,-0.03356750905513763,27217280.0,0.40000001192092893,0.5128160059452057,0.3375,0.4833976686000824,0.0625,0.048803111910820006,1.356445837020874,0.5151669025421143,0.0004942644838592969,0.4078113555908203,0.019208419509232043,122.46452264396939,,,,, +285,1.3839448365615681e-05,1.3839448365615681e-05,2.5153061869787052e-05,2.5153061869787052e-05,3.899251023540273e-05,0.4,8192.0,7563.4,6073.6,5194.015576171875,2742.2,2742.2,0.4780237220227718,0.57,0.35,0.00021683347586076707,0.0004415047911606962,2.0103251919859667e-06,-0.017918914556503296,27717244.0,0.47375001311302184,0.4460204005241394,0.4125,0.4225348174571991,0.061250001564621924,0.03992411680519581,1.5716058492660523,0.5910747110843658,7.44940698496066e-05,0.4826668262481689,0.01931140087544918,128.3216826400021,,,,, +290,3.396642314328347e-05,3.396642314328347e-05,7.635442307218909e-05,7.635442307218909e-05,0.00011032084621547256,0.275,8192.0,7740.0,5881.05,4993.60380859375,2694.0,2694.0,0.6617037743330002,0.58,0.2,0.012042604386806488,0.0005774083048891044,1.932631918748036e-06,-0.015524500608444214,28203096.0,0.44125002026557925,0.5016947150230407,0.3625,0.4833976686000824,0.07875000163912774,0.0329644862562418,1.1166484117507935,0.37501461505889894,0.0004679164820117876,0.551505732536316,0.01987215653061867,120.68986676600761,,,,, +295,3.745669673662633e-05,3.745669673662633e-05,3.599707179091638e-05,3.599707179091638e-05,7.34537685275427e-05,0.35,8192.0,7279.0,5835.275,4573.85146484375,1876.0,1876.0,0.5696757860481739,0.59,0.25,0.009355244226753712,0.0004948811871145154,1.8555122521414393e-06,-0.03232020437717438,28684342.0,0.4650000274181366,0.5030308067798615,0.4,0.4725348174571991,0.06500000208616256,0.0477097675204277,1.2076618671417236,0.5218270361423493,0.0005448113661259413,0.4827362060546875,0.018572717532515527,120.65108406280633,,,,, +300,1.783679581421893e-05,1.783679581421893e-05,2.075825450447155e-05,2.075825450447155e-05,3.8595050318690484e-05,0.3625,8192.0,7481.2,5676.55,4401.402587890625,1848.6,1848.6,0.5260912530124188,0.6,0.45,0.015566719695925713,0.00046435103031399193,1.7790441598094633e-06,-0.02539510130882263,29151842.0,0.4162500277161598,0.45397348403930665,0.35,0.4313549637794495,0.0662500023841858,0.044498388469219205,1.7101554155349732,0.5204286098480224,5.888287441848661e-05,0.48897542953491213,0.017776187509298325,121.50310607057763,,,,, +305,1.155387690232601e-05,1.155387690232601e-05,1.9667567357828375e-05,1.9667567357828375e-05,3.1221444260154385e-05,0.5,8192.0,7359.8,6396.0875,4662.194189453125,2529.6,2529.6,0.36136699728667737,0.61,0.35,0.020221464335918427,0.00035113162812194787,1.7033049506566746e-06,-0.030122283101081847,29677565.0,0.397500017285347,0.4983188033103943,0.3375,0.4682775318622589,0.060000001639127734,0.0477097675204277,1.2131677150726319,0.6129359364509582,0.008493937927414662,0.44242011308670043,0.017083729989826678,129.0262207862921,,,,, +310,2.169038270949386e-05,2.169038270949386e-05,2.823796348820906e-05,2.823796348820906e-05,4.9928346197702925e-05,0.3125,8192.0,7186.2,5443.175,4257.13515625,1849.0,1849.0,0.5551778364926576,0.62,0.1,0.0018682579975575209,0.0005077430803794413,1.6283711966899546e-06,-0.023601481318473817,30127691.0,0.4462500274181366,0.5103400528430939,0.375,0.4858671844005585,0.07125000208616257,0.04517106786370277,1.2212650775909424,0.4694517970085144,0.0003091120917815715,0.36772737503051756,0.018417006731033324,116.99623023042223,,,,, +315,2.546931445976952e-05,2.546931445976952e-05,5.3663289872929457e-05,5.3663289872929457e-05,7.913260433269897e-05,0.4125,8192.0,7282.0,6042.475,4344.96728515625,1757.6,1757.6,0.4491700354963541,0.63,0.25,0.019856443628668785,0.0004142113783018431,1.5543186556045381e-06,-0.052291345596313474,30625033.0,0.4750000238418579,0.5128730118274689,0.4125,0.4788348078727722,0.06250000149011611,0.04809281602501869,1.3786771774291993,0.555902224779129,0.001093469961779192,0.4208186149597168,0.01759226284921169,123.86051249967423,,,,, +320,8.413378236582502e-06,8.413378236582502e-06,5.719348027923843e-05,5.719348027923843e-05,6.560685851582093e-05,0.2375,8192.0,6571.0,4884.775,3878.393505859375,1635.0,1635.0,0.8087057523429394,0.64,0.4,0.02303563430905342,0.0006455018192355055,1.4812221941933202e-06,-0.054079437255859376,31029043.0,0.44250001907348635,0.4918306589126587,0.3625,0.4766244113445282,0.08000000268220901,0.03506878912448883,1.3997814178466796,0.439543342590332,4.5213272096589206e-05,0.38025765419006347,0.021472275629639624,112.73359236669494,,,,, +325,3.35167233060929e-05,3.35167233060929e-05,2.847836549335625e-05,2.847836549335625e-05,6.199508879944915e-05,0.275,8192.0,7504.6,5512.975,4495.10380859375,1996.4,1996.4,0.6752199500799179,0.65,0.5,0.01841491274535656,0.0005823238290759037,1.409155712656855e-06,-0.0019972389563918114,31484141.0,0.5012500211596489,0.4300500936806202,0.425,0.4032795548439026,0.07625000178813934,0.03622679561376572,1.5146459817886353,0.4960001766681671,4.5487344505090735e-05,0.36063694953918457,0.019965317100286484,117.16006574218628,,,,, +330,2.535644161980599e-05,2.535644161980599e-05,2.858687366824597e-05,2.858687366824597e-05,5.394331528805196e-05,0.3625,8192.0,7547.8,6023.4625,4876.979541015625,2407.4,2407.4,0.5646648027002812,0.66,0.25,0.013362279161810875,0.0005089963633508887,1.3381920698905788e-06,0.009592251479625702,31980562.0,0.5587500214576722,0.5398504376411438,0.4875,0.5123081803321838,0.07125000283122063,0.03522151559591293,1.3899180889129639,0.5030634999275208,5.263362636469538e-05,0.46022639274597166,0.0196210540831089,123.62288708318957,,,,, +335,2.519856807339238e-05,2.519856807339238e-05,7.166398336266866e-05,7.166398336266866e-05,9.686255143606103e-05,0.325,8192.0,7671.8,5740.0125,4646.874072265625,1437.8,1437.8,0.5776379153132438,0.67,0.25,0.013842440210282803,0.0005226269415288698,1.2684030098247892e-06,0.0152307391166687,32453579.0,0.38250001072883605,0.4933113932609558,0.3125,0.47032023668289186,0.07000000029802322,0.04401244632899761,1.2976455211639404,0.5087077140808105,0.0006263171722821426,0.3793311595916748,0.018857460096478464,119.2878194217803,,,,, +340,2.423353071208112e-05,2.423353071208112e-05,3.604882422223454e-05,3.604882422223454e-05,6.0282354934315666e-05,0.3375,8192.0,7663.0,5890.225,4703.7263671875,2110.4,2110.4,0.6645260855555535,0.68,0.45,0.0008377410122193396,0.0005576036222919356,1.1998590888918477e-06,-0.08546310067176818,32940265.0,0.5462500035762787,0.5225821018218995,0.475,0.49438175559043884,0.07125000059604644,0.04376549534499645,1.764974021911621,0.5790244549512863,0.0002485782174517226,0.4343008518218994,0.021288534626364708,121.31415525644552,,,,, +345,2.1621150699502324e-05,2.1621150699502324e-05,8.095642169791972e-05,8.095642169791972e-05,0.00010257757239742204,0.3375,8192.0,7527.2,5701.7125,4582.007177734375,1515.4,1515.4,0.5937896966934204,0.69,0.2,0.014355002902448177,0.0005108269211632433,1.1326296046939334e-06,0.02142290472984314,33411226.0,0.420000022649765,0.5034824013710022,0.35,0.48037723302841184,0.07000000327825547,0.04408478289842606,1.9127737522125243,0.49880324602127074,0.00028414841799531134,0.38953289985656736,0.0189509280025959,121.59610192476539,,,,, +350,2.1488416314241478e-05,2.1488416314241478e-05,2.0968860189896078e-05,2.0968860189896078e-05,4.2457276504137556e-05,0.35,8192.0,7470.6,5679.0125,4490.26513671875,2475.4,2475.4,0.5319203283637762,0.7,0.4,0.01594310998916626,0.0004896366834145737,1.0667825259434777e-06,-0.006305322796106338,33880307.0,0.5912500441074371,0.537332284450531,0.525,0.5014917850494385,0.06625000312924385,0.0456436961889267,1.5953875064849854,0.4733106195926666,7.098305941326544e-05,0.37795610427856446,0.018590057268738747,119.3287309814361,,,,, +355,5.808394362247782e-05,5.808394362247782e-05,1.42849181429483e-05,1.42849181429483e-05,7.236886176542612e-05,0.4625,8192.0,7647.0,6363.1,4807.71962890625,2708.2,2708.2,0.36632252782583236,0.71,0.4,0.011235032230615616,0.0003773423293750966,1.002384423747093e-06,-0.05533027648925781,34404447.0,0.4424999952316284,0.529899287223816,0.3875,0.4917445480823517,0.0550000011920929,0.050094086676836014,1.7372523546218872,0.6521147966384888,0.0037503898936847692,0.4110413074493408,0.016681287810206412,125.40061715937918,,,,, +360,7.106310658855364e-06,7.106310658855364e-06,4.701991529145744e-05,4.701991529145744e-05,5.41262259503128e-05,0.4125,8192.0,6888.0,5838.3375,4213.886328125,1467.0,1467.0,0.45390752218663694,0.72,0.4,0.005332741420716047,0.0004315115438657813,9.395004043024767e-07,-0.02220260351896286,34885866.0,0.47625001668930056,0.5395631790161133,0.4125,0.5074085474014283,0.06375000178813935,0.04706148505210876,1.4969533205032348,0.5915708661079406,0.00112992882495746,0.4130434989929199,0.01801065057516098,120.83346078401664,,,,, +365,1.760777540766867e-05,1.760777540766867e-05,5.0049900164594876e-05,5.0049900164594876e-05,6.765767557226354e-05,0.4375,8192.0,7308.2,6206.75,4638.265625,1748.6,1748.6,0.48427353203296664,0.73,0.3,0.0007926014950498939,0.0004318135906942189,8.781940430763328e-07,-0.019711288809776305,35396446.0,0.32125001549720766,0.4807149350643158,0.2625,0.4535136103630066,0.05874999985098839,0.050396130234003064,1.2832604885101317,0.5493435204029083,0.0007225852925330401,0.3706644535064697,0.019141632318496703,124.70056129575241,,,,, +370,3.13734224619111e-05,3.13734224619111e-05,3.111872756562661e-05,3.111872756562661e-05,6.249215002753771e-05,0.3,8076.2,7459.6,5644.0,4615.088671875,1772.6,1772.6,0.6178038824349642,0.74,0.55,0.00447523919865489,0.0005459160045575117,8.185273205298533e-07,-0.0056747056543827055,35861062.0,0.5087500169873238,0.4240085527300835,0.4375,0.39519179463386533,0.07125000208616257,0.03640557304024696,1.3067410945892335,0.4283887341618538,0.0003182226348599215,0.6141766548156739,0.01932058148086071,119.30222791245906,,,,, +375,1.2227999650349376e-05,1.2227999650349376e-05,3.877749913954176e-05,3.877749913954176e-05,5.1005498789891135e-05,0.3875,8192.0,7198.6,5955.6625,4563.76259765625,2373.4,2373.4,0.5276334185153246,0.75,0.25,0.011627898551523685,0.00048148801288334654,7.605605594567477e-07,-0.032686462998390196,36351811.0,0.45250003039836884,0.4996836602687836,0.3875,0.47227430939674375,0.06500000208616256,0.04658080264925957,1.4819253921508788,0.5355353057384491,0.00032761223123998204,0.3694731593132019,0.01915241815149784,121.99829299757258,,,,, +380,2.788286547001917e-05,2.788286547001917e-05,7.061425822030287e-05,7.061425822030287e-05,9.849712369032204e-05,0.3125,8192.0,7237.2,5965.275,4932.53779296875,2775.8,2775.8,0.5572439126670361,0.76,0.3,0.0004719191347248852,0.0005139960692758904,7.043523639971634e-07,-0.0003916546702384949,36843025.0,0.47500001788139345,0.4766451358795166,0.4,0.45525074005126953,0.07500000298023224,0.0424280971288681,1.7704397916793824,0.4915508508682251,5.40813198313117e-05,0.4294365406036377,0.0181737944483757,120.75006731892935,,,,, +385,3.0266764770203736e-05,3.0266764770203736e-05,3.497551970212953e-05,3.497551970212953e-05,6.524228447233327e-05,0.55,8192.0,7634.2,6748.15,5087.9330078125,3102.0,3102.0,0.3841804787516594,0.77,0.2,0.0025101578794419765,0.00035473888747219464,6.499595603891564e-07,-0.03467814028263092,37396489.0,0.3275000110268593,0.46312103271484373,0.275,0.4333976686000824,0.05249999985098839,0.049642445892095564,1.3949686527252196,0.6328388690948487,0.0012505857870564797,0.43664801120758057,0.018714674934744834,130.61401225298178,,,,, +390,2.0650749684136825e-05,2.0650749684136825e-05,3.349191010784125e-05,3.349191010784125e-05,5.4142659791978076e-05,0.3375,8192.0,7267.8,5571.9125,4356.4255859375,1934.6,1934.6,0.5358524050563573,0.78,0.25,0.0018460283754393458,0.0004964953433955089,5.974371395176171e-07,-0.07002602219581604,37856674.0,0.4825000286102295,0.5261715173721313,0.4125,0.5001308262348175,0.07000000253319741,0.04560101628303528,1.602834415435791,0.5304871916770935,2.9655577964149416e-05,0.3853906631469727,0.018581918999552728,120.834668961633,,,,, +395,1.902389558381401e-05,1.902389558381401e-05,2.718622963584494e-05,2.718622963584494e-05,4.621012521965895e-05,0.325,8192.0,6840.4,5664.0875,4514.4048828125,1803.4,1803.4,0.5694806519895792,0.79,0.5,0.013602925464510918,0.000520255089213606,5.468382013187274e-07,0.005540503561496735,38322473.0,0.4837500214576721,0.501724261045456,0.4125,0.47572155594825744,0.07125000208616257,0.04496679678559303,1.6975712776184082,0.4965516984462738,0.00017856058839242904,0.4215151071548462,0.018332000821828842,119.28379233941669,,,,, +400,3.759375049412483e-05,3.759375049412483e-05,4.583303270919714e-05,4.583303270919714e-05,8.342678320332198e-05,0.3875,8192.0,7964.2,6413.7,5441.48203125,2479.4,2479.4,0.44108477123081685,0.8,0.1,0.0011784491362050176,0.00043381024988775607,4.982139010961554e-07,-0.07717194557189941,38849141.0,0.43750000596046446,0.5151091396808625,0.375,0.4858671844005585,0.06250000298023224,0.0442890539765358,1.43318350315094,0.5456279039382934,0.0005867377514732653,0.42147576808929443,0.017226589471101762,128.97936999953816,,,,, +405,3.46052140230313e-05,3.46052140230313e-05,6.176282840897329e-05,6.176282840897329e-05,9.636804243200459e-05,0.3875,8192.0,7311.8,6236.0375,5037.9912109375,2338.0,2338.0,0.4954778466373682,0.81,0.2,0.0012481132289394736,0.00046286759061331395,4.516133978032758e-07,-0.03799670040607452,39361616.0,0.43125001788139344,0.49137298464775087,0.3625,0.4689947545528412,0.06875000149011612,0.042253481969237325,1.2106476068496703,0.49523733258247377,1.774185730027966e-05,0.4303808927536011,0.018514944612979888,124.52821943038143,,,,, +410,5.217173875280423e-05,5.217173875280423e-05,5.2493330076686104e-05,5.2493330076686104e-05,0.00010466506882949034,0.2375,8192.0,7374.8,5200.375,4268.4697265625,1605.6,1605.6,0.6579656098037958,0.82,0.15,0.01448483020067215,0.0005885310412850231,4.070838043436787e-07,0.03015740215778351,39790626.0,0.5050000190734864,0.49998060464859007,0.425,0.48037723302841184,0.07999999970197677,0.0411933034658432,1.169538640975952,0.3487127959728241,0.00011578274425119161,0.4303405284881592,0.018802744522690772,114.73725040000863,,,,, +415,3.2599219048279336e-05,3.2599219048279336e-05,1.6370696539524942e-05,1.6370696539524942e-05,4.896991558780428e-05,0.325,8192.0,7615.8,6046.7625,5001.793408203125,2051.0,2051.0,0.5156534478068352,0.83,0.3,0.0006519254529848695,0.0005021161814511288,3.6467013994023333e-07,-0.011234980076551437,40289339.0,0.4975000262260437,0.5038581311702728,0.425,0.47709767818450927,0.07250000238418579,0.044541068375110626,1.0719796895980835,0.43310890793800355,0.00024572386901127173,0.41701722145080566,0.018344159796833993,122.68497966722353,,,,, +420,2.157539565814659e-05,2.157539565814659e-05,1.8524172082834413e-05,1.8524172082834413e-05,4.0099567740981e-05,0.4125,8192.0,6980.2,6091.625,4556.67890625,1774.8,1774.8,0.4809040084481239,0.84,0.45,0.0023587318137288094,0.0004520405305811437,3.244152846208537e-07,-0.025171348452568056,40790669.0,0.47625001072883605,0.5283896684646606,0.4125,0.49502410292625426,0.06375000104308129,0.04782838895916939,1.3349697828292846,0.5768548965454101,0.0022900557552929966,0.4184563815593719,0.018908844515681266,123.38031557541107,,,,, +425,2.831658930517733e-05,2.831658930517733e-05,3.2334987372451e-05,3.2334987372451e-05,6.0651576677628324e-05,0.25,8129.2,7239.8,5180.25,4206.573974609375,1853.0,1853.0,0.6609937485307456,0.85,0.3,0.005287890788167715,0.0005867277537618065,2.8635993586697555e-07,-0.01797204911708832,41218721.0,0.5662500262260437,0.5170952081680298,0.4875,0.49519179463386537,0.0787500023841858,0.03531574010848999,0.9403133034706116,0.38942299485206605,0.00019988254261988915,0.5073586225509643,0.018871005438268185,114.15993342158617,,,,, +430,3.4186444463557566e-05,3.4186444463557566e-05,5.106516255182214e-05,5.106516255182214e-05,8.525160701537971e-05,0.325,8192.0,7754.0,6000.7875,4927.68173828125,1919.8,1919.8,0.538015267252922,0.86,0.25,0.005035479553043842,0.0005046233040047809,2.505425674685852e-07,-0.01272435039281845,41713748.0,0.543750011920929,0.5313809156417847,0.475,0.5014917850494385,0.06875,0.043130431696772574,1.2763804912567138,0.46345540285110476,0.00011190253862878308,0.4986120700836182,0.01774217337369919,122.05536098594311,,,,, +435,2.479190043231938e-05,2.479190043231938e-05,3.5043452953686937e-06,3.5043452953686937e-06,2.8296245727688073e-05,0.4375,8192.0,7113.4,6095.475,4425.65,1740.2,1740.2,0.4294633984565735,0.87,0.3,0.015664342790842056,0.0004002512552688131,2.169993906273865e-07,-0.025397562980651857,42214370.0,0.42750002443790436,0.5064951360225678,0.3625,0.4786671161651611,0.06500000134110451,0.04842077195644379,1.5298434495925903,0.6025331020355225,4.756487760460004e-05,0.4753256320953369,0.017417998984456062,122.35158803031081,,,,, +440,2.2727175019099376e-05,2.2727175019099376e-05,3.156288021273212e-05,3.156288021273212e-05,5.42900552318315e-05,0.4375,8192.0,7294.0,6154.0875,4747.3224609375,2474.8,2474.8,0.47573986910283567,0.88,0.5,0.02173118107020855,0.00042216334186377934,1.8576431734743355e-07,-0.005934173613786698,42720549.0,0.4112500250339508,0.4785614311695099,0.35,0.4504780113697052,0.06125000193715095,0.04821143746376037,1.1769060373306275,0.5616408526897431,0.0024426347959888516,0.4448044180870056,0.01940140649676323,125.69063664734131,,,,, +445,4.92034911076189e-05,4.92034911076189e-05,4.826879430765985e-05,4.826879430765985e-05,9.747228541527875e-05,0.2625,8192.0,7223.0,5452.7125,4579.774072265625,2539.8,2539.8,0.5817273691296577,0.89,0.25,0.002973184222355485,0.0005519955862837378,1.5686892615024678e-07,0.0029141951352357866,43170150.0,0.5425000309944152,0.516557902097702,0.4625,0.4968512713909149,0.08000000268220901,0.03471984565258026,1.709087109565735,0.43550595045089724,0.0007049710024148226,0.45221126079559326,0.018127450719475746,116.43933658991008,,,,, +450,2.6825101303984412e-05,2.6825101303984412e-05,4.853433565585874e-05,4.853433565585874e-05,7.535943695984315e-05,0.3625,8192.0,7633.2,6295.7375,5253.85400390625,2313.2,2313.2,0.5681983001530171,0.9,0.25,0.0008648726507090032,0.000512612983584404,1.3034243014906577e-07,-0.036584073305130006,43687685.0,0.31875000298023226,0.44463815689086916,0.25,0.42428097128868103,0.06875000298023223,0.04552001133561134,1.4215837478637696,0.47113325595855715,0.0034544713252216753,0.41086483001708984,0.02014000341296196,125.0039360503666,,,,, +455,3.556634528649738e-05,3.556634528649738e-05,2.8267697052797304e-05,2.8267697052797304e-05,6.383404233929468e-05,0.3875,8192.0,7545.2,6152.0,4773.31279296875,2202.0,2202.0,0.5038395252078771,0.91,0.3,0.005739274434745312,0.0004654826869227691,1.0621164751451835e-07,-0.023277294635772706,44195413.0,0.37750002145767214,0.48284120559692384,0.3125,0.4577202558517456,0.06500000208616256,0.04732671901583672,1.017975878715515,0.47267534732818606,0.0017095576040446758,0.5692969799041748,0.01917128898203373,124.54498371880035,,,,, +460,2.059712787740864e-05,2.059712787740864e-05,1.2961050924786832e-05,1.2961050924786832e-05,3.355817880219547e-05,0.4,8192.0,6594.2,5845.4875,4519.06826171875,2238.6,2238.6,0.4153364643454552,0.92,0.4,0.0027403533458709717,0.00041159947832056785,8.4500974361571e-08,-0.021941187977790832,44676584.0,0.5887500166893005,0.5092232346534729,0.525,0.474577522277832,0.0637500025331974,0.042782103270292283,1.1622975587844848,0.5423172950744629,0.003773641079897061,0.36006975173950195,0.016427029110491275,122.75772405877942,,,,, +465,2.0867739294772036e-05,2.0867739294772036e-05,4.736180562758818e-05,4.736180562758818e-05,6.822954492236022e-05,0.3125,8192.0,7709.2,6032.825,5103.1044921875,2288.6,2288.6,0.6101353093981743,0.93,0.25,0.009831800125539303,0.0005273610629956238,6.523236008516343e-08,-0.015974228084087373,45173278.0,0.44875001907348633,0.49451568722724915,0.375,0.470747047662735,0.07375000119209289,0.04288854487240314,1.1062397003173827,0.40810646414756774,0.0002599631996417884,0.35338525772094725,0.01892122980207205,121.53977904419881,,,,, +470,3.742442622751696e-05,3.742442622751696e-05,6.868865802971414e-05,6.868865802971414e-05,0.0001061130842572311,0.225,8192.0,7322.8,5371.825,4563.16455078125,2486.8,2486.8,0.5973391931504011,0.94,0.15,0.010953117161989212,0.0005790951116068754,4.842528516946499e-08,0.02759210765361786,45616572.0,0.6825000286102295,0.521288126707077,0.6,0.4976613104343414,0.08250000327825546,0.03718114607036114,1.4777040243148805,0.44637820720672605,0.0019522853297530673,0.6265533924102783,0.01806873455643654,115.4447903025779,,,,, +475,3.157264491164824e-05,3.157264491164824e-05,1.058958823705325e-05,1.058958823705325e-05,4.216223314870149e-05,0.4375,8192.0,6698.0,5884.375,4131.776611328125,2226.0,2226.0,0.45094134882092474,0.95,0.35,0.004654445219784975,0.00041175549122272057,3.4096741493194196e-08,-0.015629541873931885,46101834.0,0.45625,0.5127429246902466,0.4,0.47653159499168396,0.05625,0.0493954949080944,1.2567801475524902,0.5867542624473572,0.0011882658873219043,0.3459563493728638,0.018428612872958182,122.4233100960264,,,,, +480,2.4768075309111737e-05,2.4768075309111737e-05,5.480264208017616e-05,5.480264208017616e-05,7.957071738928789e-05,0.475,8192.0,7285.6,6421.0125,5015.50341796875,2709.6,2709.6,0.4655180465430021,0.96,0.25,0.0043388535268604755,0.0004177113085461315,2.226121515090135e-08,-0.0047035180032253265,46629547.0,0.3800000101327896,0.5084611117839813,0.325,0.47636529207229616,0.054999999701976776,0.04829244166612625,1.1449656724929809,0.5806710481643677,0.0008707721730388584,0.4706479787826538,0.019159943982958793,127.61183470995165,,,,, +485,8.809539212961682e-06,8.809539212961682e-06,4.532382426987169e-05,4.532382426987169e-05,5.4133363482833376e-05,0.325,8192.0,7037.0,5352.9375,3978.278076171875,1620.6,1620.6,0.5344364751130343,0.97,0.45,0.018044359982013702,0.0004937573296047049,1.2930671807592499e-08,-0.010347800701856614,47071110.0,0.4837500214576721,0.5328407645225525,0.4125,0.5057490706443787,0.07125000283122063,0.04437005892395973,1.1674573421478271,0.47971158027648925,0.0001123621201259084,0.42725586891174316,0.017739313840866088,117.25922548639355,,,,, +490,3.2180388916458466e-05,3.2180388916458466e-05,3.6518910201266407e-05,3.6518910201266407e-05,6.869929911772488e-05,0.3125,8192.0,7307.4,5684.475,4581.252685546875,2087.0,2087.0,0.5945015035569667,0.98,0.4,0.006195406895130873,0.0005357596524845576,6.1145446014937435e-09,-0.016571371257305144,47540784.0,0.5887500226497651,0.5160997986793519,0.5125,0.49012446999549864,0.07625000178813934,0.03682775348424912,1.443044328689575,0.4788196325302124,0.0003455066791502759,0.36446619033813477,0.01913171000778675,119.47929150901037,,,,, +495,2.359693589824019e-05,2.359693589824019e-05,3.32263207383221e-05,3.32263207383221e-05,5.682325663656229e-05,0.4125,8192.0,7564.4,6364.2875,5048.76826171875,2327.6,2327.6,0.44796661250293257,0.99,0.15,0.007253700867295265,0.00043859143406734804,1.8197246071910424e-09,-0.10395991802215576,48064271.0,0.5425000250339508,0.534503698348999,0.475,0.5014917850494385,0.0675000011920929,0.04788854494690895,1.7138487339019775,0.5787723779678344,0.0010534232471400174,0.39611639976501467,0.01806949805468321,125.15024776902283,,,,, +500,2.5840510352281855e-05,2.5840510352281855e-05,2.807076798490016e-05,2.807076798490016e-05,5.391127833718201e-05,0.5375,8192.0,7608.4,6602.9125,4763.66171875,2262.4,2262.4,0.3606540892273188,1.0,0.3,0.005207746289670467,0.0003403618684387766,5.055386878310975e-11,0.0012302775867283344,48607628.0,0.5087500154972077,0.5342888355255127,0.45,0.4947649836540222,0.058750000596046445,0.050396130234003064,1.5751206398010253,0.6794857144355774,0.0076814246457615806,0.43262596130371095,0.017066480591893196,131.38101670882898,0.0,-0.021499338652240112,62602.076,0.032,0.008 diff --git a/model.safetensors b/model.safetensors new file mode 100644 index 0000000..3aed844 --- /dev/null +++ b/model.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3436638ca3b19861db966f43ad0ed9cc1817c9525e0b9ae6feb4e0adb63cdbc4 +size 3441185608 diff --git a/run_config.json b/run_config.json new file mode 100644 index 0000000..f081803 --- /dev/null +++ b/run_config.json @@ -0,0 +1,35 @@ +{ + "model": "./math_grpo_hard", + "output_dir": "./math_grpo_hard2", + "max_problems": 2000, + "num_train_epochs": 1, + "per_device_train_batch_size": 1, + "gradient_accumulation_steps": 16, + "num_generations": 4, + "learning_rate": 5e-06, + "max_completion_length": 8192, + "mask_truncated_completions": true, + "min_difficulty": 7.0, + "max_difficulty": 10.0, + "vllm_max_model_length": null, + "seed": 42, + "resume_checkpoint": null, + "save_interval_hours": 1.0, + "reward_type": "accuracy", + "cos_correct_short": 1.0, + "cos_correct_long": 0.5, + "cos_wrong_short": -1.0, + "cos_wrong_long": 0.0, + "beta": 0.04, + "loss_type": "dapo", + "epsilon": 0.2, + "epsilon_high": 0.28, + "zero_variance_filter": false, + "use_vllm": true, + "vllm_gpu_memory_utilization": 0.3, + "use_lora": true, + "lora_r": 32, + "lora_alpha": 64, + "lora_dropout": 0.05, + "_timestamp": "2026-06-08 08:46:08" +} \ No newline at end of file diff --git a/tokenizer.json b/tokenizer.json new file mode 100644 index 0000000..c7afbed --- /dev/null +++ b/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506 +size 11422650 diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000..5668a4a --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,30 @@ +{ + "add_prefix_space": false, + "backend": "tokenizers", + "bos_token": null, + "clean_up_tokenization_spaces": false, + "eos_token": "<|im_end|>", + "errors": "replace", + "extra_special_tokens": [ + "<|im_start|>", + "<|im_end|>", + "<|object_ref_start|>", + "<|object_ref_end|>", + "<|box_start|>", + "<|box_end|>", + "<|quad_start|>", + "<|quad_end|>", + "<|vision_start|>", + "<|vision_end|>", + "<|vision_pad|>", + "<|image_pad|>", + "<|video_pad|>" + ], + "is_local": true, + "local_files_only": false, + "model_max_length": 131072, + "pad_token": "<|endoftext|>", + "split_special_tokens": false, + "tokenizer_class": "Qwen2Tokenizer", + "unk_token": null +} diff --git a/training_args.bin b/training_args.bin new file mode 100644 index 0000000..3f08ba9 --- /dev/null +++ b/training_args.bin @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c01779804a9872c6477dd089280b9616f457e060160526a7aecd2cf4d9c8d400 +size 5777