rottenstuff commited on
Commit
1df9a4a
·
verified ·
1 Parent(s): 72b9604

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +28 -0
README.md CHANGED
@@ -69,6 +69,34 @@ The primary challenge in this task is data imbalance. Because most audio is high
69
 
70
  To solve this, we first generated a massive, multi-million sample dataset. From this pool, we then **meticulously curated** a final dataset with a **perfectly flat, uniform distribution** of quality scores. This means there is a **precisely equal number of files** for every single score bin across the entire quality spectrum.
71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  Additionally, 1-second audio clips were intelligently extracted from more complex segments of the source files to provide the model with challenging and informative examples.
73
 
74
  ### Source Data
 
69
 
70
  To solve this, we first generated a massive, multi-million sample dataset. From this pool, we then **meticulously curated** a final dataset with a **perfectly flat, uniform distribution** of quality scores. This means there is a **precisely equal number of files** for every single score bin across the entire quality spectrum.
71
 
72
+ To be precise, the dataset is partitioned into 20 bins based on the NMOS score, with each bin containing an identical number of samples. The exact distribution is as follows:
73
+
74
+ | Score Range | Number of Samples |
75
+ |:-----------:|:-----------------:|
76
+ | [0.00, 0.05) | 30601 |
77
+ | [0.05, 0.10) | 30601 |
78
+ | [0.10, 0.15) | 30601 |
79
+ | [0.15, 0.20) | 30601 |
80
+ | [0.20, 0.25) | 30601 |
81
+ | [0.25, 0.30) | 30601 |
82
+ | [0.30, 0.35) | 30601 |
83
+ | [0.35, 0.40) | 30601 |
84
+ | [0.40, 0.45) | 30601 |
85
+ | [0.45, 0.50) | 30601 |
86
+ | [0.50, 0.55) | 30601 |
87
+ | [0.55, 0.60) | 30601 |
88
+ | [0.60, 0.65) | 30601 |
89
+ | [0.65, 0.70) | 30601 |
90
+ | [0.70, 0.75) | 30601 |
91
+ | [0.75, 0.80) | 30601 |
92
+ | [0.80, 0.85) | 30601 |
93
+ | [0.85, 0.90) | 30601 |
94
+ | [0.90, 0.95) | 30601 |
95
+ | [0.95, 1.00] | 30601 |
96
+ | **Total** | **612020** |
97
+
98
+ This deliberate and uniform sampling strategy ensures that a model trained on this data is not biased towards high-quality examples and can learn to accurately assess audio across the full range of perceptual quality.
99
+
100
  Additionally, 1-second audio clips were intelligently extracted from more complex segments of the source files to provide the model with challenging and informative examples.
101
 
102
  ### Source Data