AnhP commited on
Commit
4fc0216
·
verified ·
1 Parent(s): 3eef38c

Upload 47 files

Browse files
README.txt ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ This model uses the original RMVPE architecture from yxlllc.
2
+
3
+ It was not trained together with the HPA RMVPE dataset; instead, it was trained on a different dataset that is richer in contextual information and contains more M4Singer data.
4
+
5
+ The training was conducted on a HYBRID dataset combining MUSIC and SPEECH, including:
6
+ M4Singer (≈40%), Batch10Synth, Vocadito, MIR1K, MDBStemSynth, and PTDB-TUG.
7
+
8
+ The model is currently trained up to 88,000 steps and may be further trained if I have more time. According to Vidalnt, when these models are trained beyond 100,000 steps, they begin to learn and amplify background noise as well.
benchmark_report.md ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Pitch Detection Algorithm Benchmark Report
2
+
3
+ ## Benchmark Methodology
4
+
5
+ ### Evaluation Setup
6
+ This benchmark evaluates pitch detection algorithms across multiple datasets with different characteristics, including synthetic and real audio from speech and music domains. Each algorithm is tested on noisy audio generated by mixing clean datasets with CHiME background noise at various signal-to-noise ratios (10-30 dB) and voice gain variations (-6 to +6 dB).
7
+
8
+ ### Performance Metric Definition
9
+ The **Overall Performance Rankings** show the **Harmonic Mean (HM)** score as percentages, computed from six complementary components:
10
+
11
+ **HM = 6 / (1/RPA + 1/CA + 1/P + 1/R + 1/OA + 1/GEA)**
12
+
13
+ Where:
14
+ - **RPA** (Raw Pitch Accuracy): Fraction of voiced frames within 50 cents of ground truth
15
+ - **CA** (Cents Accuracy): exp(-mean_cents_error/500), penalizing larger deviations exponentially
16
+ - **P** (Voicing Precision): TP/(TP+FP), fraction of predicted voiced frames that are truly voiced
17
+ - **R** (Voicing Recall): TP/(TP+FN), fraction of truly voiced frames detected
18
+ - **OA** (Octave Accuracy): exp(-10×octave_error_rate), robustness against octave errors
19
+ - **GEA** (Gross Error Accuracy): exp(-5×gross_error_rate), penalizing deviations >200 cents
20
+
21
+ ### Speed Benchmark Details
22
+ CPU timing measurements are performed on 1-second audio signals at 22.05 kHz sample rate with 256-sample hop length. The reported **CPU Time (ms)** represents the average processing time per 1-second audio segment across multiple runs. **Relative Speed** shows performance relative to CREPE as the baseline algorithm.
23
+
24
+ ### Optimal Threshold Analysis
25
+ The **Optimal Threshold** refers to the voicing confidence threshold that maximizes the Harmonic Mean score. Algorithms test multiple thresholds (0.0 to 1.0 in steps of 0.1) and select the one yielding the highest combined score. **CV** stands for Coefficient of Variation (std/mean), measuring consistency across datasets.
26
+
27
+ ## Dataset Descriptions
28
+
29
+ The benchmark evaluates algorithms across diverse datasets covering speech, music, synthetic, and real-world conditions:
30
+
31
+ | **Dataset** | **Domain** | **Type** | **Description** |
32
+ |---|---|---|---|
33
+ | **NSynth** | Music | Synthetic | Single-note synthetic audio from musical instruments with accurate pitch labels. Lacks temporal/spectral complexity of real-world environments. |
34
+ | **PTDB** | Speech | Real | Speech recordings with laryngograph signals capturing vocal fold vibrations. Ground truth derived from high-pass filtered laryngograph signals processed with RAPT algorithm. |
35
+ | **PTDBNoisy** | Speech | Real | Subset of 347 PTDB files (7.4%) with noticeable noise that were excluded from main evaluation. |
36
+ | **MIR1K** | Music | Real | Vocal excerpts with pitch contours initially extracted algorithmically (e.g., YIN) followed by manual correction. Labels still reflect some algorithmic biases. |
37
+ | **MDBStemSynth** | Music | Synthetic | Musically structured synthetic audio with accurate pitch annotations. Valuable for controlled evaluation but lacks real-world acoustic variability. |
38
+ | **Vocadito** | Music | Real | Solo vocal recordings with pitch annotations derived from pYIN algorithm, refined through manual verification process. |
39
+ | **Bach10Synth** | Music | Synthetic | High-quality pitch labels for synthesized musical performances. Similar to MDB-STEM-Synth but focused on Bach compositions. |
40
+ | **SpeechSynth** | Speech | Synthetic | Synthetic Mandarin speech generated using LightSpeech TTS model. Trained on 97.48 hours from AISHELL-3 and Biaobei datasets, providing exact pitch ground truth. |
41
+
42
+ **Key Characteristics:**
43
+ - **Synthetic datasets** provide perfect ground truth but may lack real-world complexity
44
+ - **Real datasets** capture natural acoustic variations but have imperfect ground truth annotations
45
+ - **Speech datasets** focus on vocal pitch tracking challenges
46
+ - **Music datasets** encompass instrumental and vocal music scenarios
47
+ - **SpeechSynth** addresses the gap of lacking synthetic speech data with accurate pitch labels
48
+
49
+ ## Overall Performance Rankings
50
+
51
+ | **Algorithm** | **Bach10Synth** | **MDBStemSynth** | **MIR1K** | **PTDB** | **PTDBNoisy** | **SpeechSynth** | **Vocadito** | **Average** |
52
+ |---|---|---|---|---|---|---|---|---|
53
+ | **RMVPE (AnhP)** | **99.0%** | **93.6%** | 94.7% | **91.3%** | **82.5%** | 88.4% | **97.2%** | **92.4%** |
54
+ | RMVPE (yxlllc) | 98.3% | 91.7% | **96.0%** | 86.0% | 66.6% | **90.5%** | **97.2%** | 89.5% |
55
+
56
+ No speed benchmark results found.
57
+ ## Detailed Performance Analysis
58
+
59
+ ### Voicing Detection Performance
60
+ Measures how well algorithms distinguish between voiced (pitched) and unvoiced (unpitched) audio segments.
61
+
62
+ | **Algorithm** | **Precision ↑** | **Recall ↑** | **F1-Score ↑** |
63
+ |---|---|---|---|
64
+ | RMVPE (yxlllc) | 0.891 | 0.816 | 0.851 |
65
+ | **RMVPE (AnhP)** | **0.918** | **0.851** | **0.883** |
66
+
67
+ ### Pitch Accuracy Metrics
68
+ Detailed pitch estimation accuracy across different error types and magnitudes.
69
+
70
+ | **Algorithm** | **RPA ↑** | **RCA ↑** | **Cents Error ↓** | **RMSE (Hz) ↓** | **Octave Error ↓** | **Gross Error ↓** |
71
+ |---|---|---|---|---|---|---|
72
+ | RMVPE (yxlllc) | 0.901 | 0.905 | 32.2 | 13.3 | 0.011 | 0.014 |
73
+ | RMVPE (AnhP) | **0.916** | **0.917** | **23.0** | **9.9** | **0.004** | **0.007** |
74
+
75
+ **Additional Metric Definitions:**
76
+ - **RCA** (Raw Chroma Accuracy): Fraction with correct pitch class (note name), ignoring octave
77
+ - **Cents Error**: Mean absolute pitch deviation in cents (raw error, before exponential transform used in CA)
78
+ - **RMSE**: Root Mean Square Error in Hz
79
+
80
+ ### Pitch Contour Smoothness
81
+ Measures the temporal stability and continuity of pitch tracks.
82
+
83
+ | **Algorithm** | **Relative Smoothness ↓** | **Continuity Breaks ↓** | **Overall Smoothness Rank ↓** |
84
+ |---|---|---|---|
85
+ | **RMVPE (yxlllc)** | 1.327 | **0.866** | **1.5** |
86
+ | **RMVPE (AnhP)** | **1.267** | 0.913 | **1.5** |
87
+
88
+ **Metric Definitions:**
89
+ - **Relative Smoothness**: Coefficient of variation of consecutive pitch changes (std/mean of relative frame-to-frame changes)
90
+ - **Continuity Breaks**: Fraction of ground-truth voiced segments where predicted voicing has gaps
91
+ - **Overall Smoothness Rank**: Average rank across both smoothness metrics (1=best, lower is better)
92
+
93
+ ### Optimal Threshold Analysis
94
+ Voicing confidence thresholds that maximize overall performance scores.
95
+
96
+ | **Algorithm** | **Mean Threshold** | **Std Dev ↓** | **Range** |
97
+ |---|---|---|---|
98
+ | RMVPE (yxlllc) | 0.686 | **0.064** | 0.60-0.80 |
99
+ | RMVPE (AnhP) | 0.686 | 0.083 | 0.60-0.80 |
100
+
101
+ ### Algorithm Consistency
102
+ Measures performance stability across different datasets using Coefficient of Variation (CV = std/mean).
103
+
104
+ | **Algorithm** | **Performance CV ↓** | **Threshold CV ↓** |
105
+ |---|---|---|
106
+ | RMVPE (yxlllc) | 0.113 | **0.093** |
107
+ | RMVPE (AnhP) | **0.056** | 0.121 |
108
+
109
+ ## Performance by Dataset Subsets
110
+
111
+ ### By Origin
112
+ - **Synthetic**: Bach10Synth, MDBStemSynth, SpeechSynth, NSynth
113
+ - **Real**: MIR1K, PTDB, PTDBNoisy, Vocadito
114
+
115
+ | **Algorithm** | **Synthetic** | **Real** |
116
+ |---|---|---|
117
+ | RMVPE (yxlllc) | 93.5% | 86.4% |
118
+ | **RMVPE (AnhP)** | **93.6%** | **91.4%** |
119
+
120
+ ### By Domain
121
+ - **Speech**: PTDB, PTDBNoisy, SpeechSynth
122
+ - **Music**: Bach10Synth, MDBStemSynth, NSynth, Vocadito, MIR1K
123
+
124
+ | **Algorithm** | **Speech** | **Music** |
125
+ |---|---|---|
126
+ | RMVPE (yxlllc) | 81.0% | 95.8% |
127
+ | **RMVPE (AnhP)** | **87.4%** | **96.1%** |
128
+
129
+ ### By Cross-Dimension
130
+ - **Synthetic + Speech**: SpeechSynth
131
+ - **Synthetic + Music**: Bach10Synth, MDBStemSynth, NSynth
132
+ - **Real + Speech**: PTDB, PTDBNoisy
133
+ - **Real + Music**: Vocadito, MIR1K
134
+
135
+ | **Algorithm** | **Synthetic + Speech** | **Synthetic + Music** | **Real + Speech** | **Real + Music** |
136
+ |---|---|---|---|---|
137
+ | **RMVPE (yxlllc)** | **90.5%** | 95.0% | 76.3% | **96.6%** |
138
+ | RMVPE (AnhP) | 88.4% | **96.3%** | **86.9%** | 95.9% |
139
+
model_10000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:44775c4c1ee7745b084a2d2144d837b4a23d9a921f84d259ac835d157d8ff314
3
+ size 1104824977
model_12000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0aa5b3a1515ef7097116380d8101dcba60dfc472ae031d84073eaf546a0975a4
3
+ size 1104829521
model_14000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d311311fa3b86705179861acbfe95749201da0f869e8ec73bee6c9ef8447daf9
3
+ size 1104829521
model_16000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e1a7704d267f01ba19301c6ac15eb2aa5d64d6c415c2e9c634a65e578e2c77c
3
+ size 1104829521
model_18000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3a5266696235794ad3a4602f949dd2dbabea97a3af6dfb538387f1dffa4764a
3
+ size 1104829521
model_2000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:13d6daa142a955ad11dda3e25de7c25d0e6d44dac148336905c750fde08ef813
3
+ size 1104822928
model_20000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:043ec65223f4fe339639d15e59bfbe115c12b97be4eff08cc1683d08017b618c
3
+ size 1104829521
model_22000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41accea1162d4df7cddaec8a16c2f3dd341e09fcaec42e9c9652d50f59daaedd
3
+ size 1104829521
model_24000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fb8ea3858d8308a360784871d70627a10a82111ca3fa37fa0ba6251deaef6d96
3
+ size 1104829521
model_26000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:71eedce3ca2014390d3647c8063018093a370041fc79458d14b675834d2528a4
3
+ size 1104829521
model_28000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:510eb1fa5f1857fd0ecf8fd3d4f31ba43cf2c1d02c8d81f5353003105d0768b9
3
+ size 1104829521
model_30000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2467437d6d554cdbadbe85da423cd2c20e0a5abb81c30897ce8b12427796c931
3
+ size 1104829521
model_32000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ec09f87c7963e60df381189bf004aac37105377f53ecdf81df5646497b6064cc
3
+ size 1104829521
model_34000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bb4f1f2899ce50a02956f8005a59a29e00f8e896bf374ba21b978013c1ce7095
3
+ size 1104829521
model_36000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bef09fa41175344901b34009a56317d71179da4bca20b4d9b40dd1dc9801eecc
3
+ size 1104829521
model_38000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0250769619804e1c876810915a454d63e92a5247072cf5f40812297adbcbdc2
3
+ size 1104829521
model_4000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1391b93fa93d98eda121d0b7ca82d81df716d8fdb9eb5b0defbe01296f5a0c39
3
+ size 1104822928
model_40000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:758717b1764781ddf1ef147bc8cccc8cf0af8a41033b8f0edb4532ac54df2daf
3
+ size 1104829521
model_42000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb17cd497a1292e02aba5dc5dd9a9e591764bdfed496f369dcebed16bec2b03b
3
+ size 1104829521
model_44000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e3c90f5301f33b679e8d0f884128166d21895f10ee22f386a1ecdf3ca9b9377d
3
+ size 1104829521
model_46000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2cfb3b997a9caca91dd55f1e9667fbaa656e608bd9c947c69715c60df4eac6e2
3
+ size 1104829521
model_48000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fac664d8e35b571d0269f5cae6f76826bdf2d699da8441f8884046f47ad968d0
3
+ size 1104829521
model_50000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f23f28f416b9eae3183ab53f9c97d24104cd045d9ead28bffa0db9687a8b4e1e
3
+ size 1104829521
model_52000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d4402b15d24ed260014017e7964a5568dee22f5171e820a04a477bfd7b4c04c9
3
+ size 1104829521
model_54000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0c30381c49e146b6f7faf351f2aec8fb45e6b45c20e16023886b03fbd4e392e3
3
+ size 1104829521
model_56000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d838aea39eb7ca91c115b121d377d1aeca319f052ea94cc94257200ce5ec372
3
+ size 1104829521
model_58000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8af31d34bebcb38b6bf8415a76139cbb0256ee7bd6f5d4855fd1c9857ed6219d
3
+ size 1104829521
model_6000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2506a952aa3cbcef901dcf89d6141a029e99222e3c5a30ef2aa703f325c8adce
3
+ size 1104822928
model_60000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6956f80345f36146acfb206441f2b11f4c205af03a04f3300249f5236e529ab5
3
+ size 1104829521
model_62000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eca3cf56296e70e8c48965eee986cf4dd7c08035a4c0b5a365329789f3849631
3
+ size 1104829521
model_64000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:372ad787b84154f0b5224d537c7181bea3e5458d0edfc3e47d8246abdfde7f4c
3
+ size 1104829521
model_66000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:994b50d1c5570039c7dca61e86247688842b165ee1dd49247a5f500c83e6739a
3
+ size 1104829521
model_68000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dabac8b436a67d8746f22d5b6b718db38bc2d27e7618294121868020e5f109fd
3
+ size 1104829521
model_70000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6502085d1f99e72d789341047996527efc4ec985eee789843752fc300d52bbb4
3
+ size 1104829521
model_72000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d00ddd1e808dc365c73bbf8f1ad57995ea1971ef539d38336266a021232ae4e
3
+ size 1104829521
model_74000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba9202149ef0adca320574c33446368377f21f7360c8a0a44572bb3d8a11363a
3
+ size 1104829521
model_76000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d90bb9d9a557483e7269cbde2a85a16c9362a020dad1fd8360b5881ab26f8b8
3
+ size 1104829521
model_78000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b1f5d70d46c21900300ab0ee54cbe5db29ddcee207f256867edde84cdef4f107
3
+ size 1104829521
model_8000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d45c2c89480531dcdbab4191ab482a95aa687f4cb2d129546bb888a4db01ef8a
3
+ size 1104822928
model_80000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fc0331d74056f608adf67717ced801b680e30efb11869586118ec960293e44d
3
+ size 1104829521
model_82000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:411ef0fb7c228f25423d1cdae392c6ff2494cea0a607179ffab127138f5428c8
3
+ size 1104829521
model_84000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6b825e4cf331dfa434b525c90a4b5feff8f2d29b2b6afb5cb646f83e3e322ba6
3
+ size 1104829521
model_86000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5e6ea9f22a8efc40561454653f0ab1e45f772d027024cd2467766eb09443a16d
3
+ size 1104829521
model_88000.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7b39730d6bb952d612f7cf9157c272877b02beab47d2d6cff5710850fdecf01
3
+ size 1104829521
result.txt ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 2000 0.9345812554648913 0.9404631649055696 0.8738607305168657 0.9948290062648664 0.2957557498678063
2
+ 4000 0.9482051773799207 0.952448129298557 0.9130800835666509 0.9934724657118604 0.1874970701493503
3
+ 6000 0.9519417465063912 0.956059271963875 0.9046005867749329 0.9948676651636592 0.22257491410877986
4
+ 8000 0.9516829321592735 0.956612127534544 0.9230181882508961 0.9920101539593238 0.13436983623621637
5
+ 10000 0.9523008664466726 0.9560359299025338 0.9279324828611787 0.9921970432122053 0.14350048414557787
6
+ 12000 0.9580443356285356 0.962011916117067 0.9200148851330153 0.9951883271085047 0.17625774368292732
7
+ 14000 0.959126504678391 0.9625865035358956 0.9224604000441008 0.9949434352857172 0.16043930145949292
8
+ 16000 0.9585473763480331 0.9622041152262701 0.9253999403852184 0.9940415793036582 0.16146347763895005
9
+ 18000 0.9582195475980431 0.9618997811822247 0.9303378103275335 0.9937616025923993 0.1460872225093451
10
+ 20000 0.9576247407955509 0.9611595548753796 0.9342403174402397 0.9931726007554272 0.13697899862064628
11
+ 22000 0.9563737835451399 0.9602916057547659 0.9365022259087539 0.992263555694565 0.12300109288958529
12
+ 18000 0.9528370553551172 0.9566640847901606 0.9313360090337547 0.9927176831677728 0.13302472017486422
13
+ 20000 0.9564620023876985 0.9599885676033416 0.9249773836663135 0.9941030622901806 0.15377997187914483
14
+ 22000 0.9578812449283893 0.961308220019354 0.9248273332293999 0.9946813336701483 0.16304011547387603
15
+ 24000 0.9586568634709425 0.9622809525060299 0.9288156937100628 0.9941956011651893 0.14381488600858744
16
+ 26000 0.9571212733767189 0.9607068686117933 0.9387208407383572 0.9913023972334545 0.11736573729650064
17
+ 28000 0.9667672185188911 0.9686393429815718 0.9335816498607965 0.9971948499475751 0.14671694406037383
18
+ 30000 0.9715536020542158 0.9730519783966546 0.9333478304676515 0.9982141582954656 0.14806229184493572
19
+ 32000 0.9706716603771022 0.9719862495812733 0.9476691747792568 0.9965520823924512 0.10952955144639445
20
+ 34000 0.974017767618145 0.9751861719306736 0.9308281034568991 0.9983627065183619 0.14412096984952938
21
+ 36000 0.9748786634733294 0.9759318535390257 0.9495642926568806 0.9982646878838246 0.11157634471467663
22
+ 38000 0.9770691711875165 0.9780495490218188 0.9451132942080992 0.9985279134646216 0.13153839058703587
23
+ 40000 0.9779086138286868 0.9787097891099046 0.9487428630661221 0.9988859561139318 0.11622573732627803
24
+ 42000 0.9786686530615442 0.9794516254211287 0.9463225875742496 0.9990123735232663 0.1252991843358524
25
+ 44000 0.97802343032447 0.9788173722242776 0.9518127484703736 0.9984962971191788 0.10709748901240924
26
+ 46000 0.9794374000203767 0.9801953522978828 0.9519200881554475 0.9987118348361588 0.11229791447848242
27
+ 48000 0.9787476266946112 0.9794740825119975 0.9567540105840867 0.998591209022086 0.09482387775482785
28
+ 50000 0.9807188297602862 0.9813979823957144 0.953080236844391 0.9989354386540203 0.10849472505253742
29
+ 52000 0.9785791512399534 0.9793936629459983 0.9508564547606247 0.9984136513870631 0.10999577905933781
30
+ 54000 0.9812768377881242 0.9819767254536711 0.9566991554395662 0.9987885551146672 0.10259671986195829
31
+ 56000 0.9804586048555387 0.9810960131395683 0.9597703825434928 0.9985126422021092 0.08940420622304222
32
+ 58000 0.9813623840816 0.9820296685517433 0.9533532441627773 0.9989566515307657 0.11201443781277752
33
+ 60000 0.9818040115865159 0.9824333370964577 0.9566026662683764 0.9990405458701835 0.10580340523076984
34
+ 62000 0.9807441590725366 0.9813685994160157 0.9529620106740375 0.9988648264173 0.11242220078138812
35
+ 64000 0.9831225744920103 0.9835474327177386 0.9614675194381237 0.9987588608928998 0.09095026713279625
36
+ 66000 0.9830918331137738 0.9836535871334137 0.9577269835408326 0.9991637858792524 0.09711894669902771
37
+ 68000 0.983819265944181 0.9842492336806958 0.9614848106900984 0.9991430723721375 0.08843717442338683
38
+ 70000 0.9841297106681123 0.9845526698195167 0.9621535513110044 0.9990930008675538 0.08819602948377057
39
+ 72000 0.9840611670696922 0.9844742998152055 0.9591444816201836 0.9991956145057047 0.0989611260694215
40
+ 74000 0.9843664527750752 0.9848367676286773 0.9572359871062323 0.9994279893700632 0.10620755626415032
41
+ 76000 0.9833849788147926 0.9838029572066056 0.9675916887372957 0.9987892461307399 0.07219258025768809
42
+ 78000 0.9855931234770404 0.9859258709959768 0.9641525446221517 0.999371186436515 0.0870335525607434
43
+ 80000 0.9855280732034077 0.9858595422536277 0.9645865635074531 0.999222101420563 0.08321275971936203
44
+ 82000 0.9847653540949557 0.9851845140162909 0.9653163337589987 0.9991804871764228 0.08308230538807393
45
+ 84000 0.9857516389675132 0.9861299034145827 0.9637693259567391 0.9993209306344569 0.09013689775952466
46
+ 86000 0.9861576996874852 0.9865024671812358 0.9664387686078546 0.9992173410577528 0.08171119147887043
47
+ 88000 0.9864662929155619 0.9867867203775306 0.9684043553413313 0.9991391687344073 0.07834987768012043