AnonAcc0 commited on
Commit
dceec77
·
verified ·
1 Parent(s): b7e1ec1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -14
README.md CHANGED
@@ -1,23 +1,29 @@
1
- ---
2
- license: cc-by-sa-4.0
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: image_level
7
- path: "*.parquet"
8
- ---
 
 
 
 
 
 
 
9
 
10
  ## Soft-digits Dataset
11
- The soft-digits dataset is released under the CC-BY-SA 4.0 license. This dataset is a combination of a
12
-
13
- - re-annotated subset of the [MNIST](http://yann.lecun.com/exdb/mnist/) dataset, originally created by Yann LeCun and Corinna Cortes. (released under CC-BY-SA 3.0)
14
- - re-annotated subset of the [distributional Ambiguous-MNIST](https://github.com/omegafragger/DDU) dataset, originally created by Jishnu Mukhoti, Andreas Kirsch, Joost van Amersfoort, Philip H.S. Torr, and Yarin Gal. (released under MIT license)
15
-
16
 
 
 
17
 
18
 
 
 
19
 
20
- ### Dataset Field Descriptions
21
 
22
  * **images** (list of size `[1, 28, 28]`): List representing the grayscale image.
23
  * **original_labels** (list): The original label associated with the source data.
@@ -31,3 +37,20 @@ The soft-digits dataset is released under the CC-BY-SA 4.0 license. This dataset
31
  * **split** (string): The dataset split, either "train", "val", or "test".
32
  * **source** (string): The origin source, either "mnist" or "mukhoti".
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-4.0
3
+ configs:
4
+ - config_name: default
5
+ data_files:
6
+ - split: image_level
7
+ path: '*.parquet'
8
+ tags:
9
+ - uncertainty,
10
+ - calibration,
11
+ - soft-labels
12
+ pretty_name: soft-digits
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
 
17
  ## Soft-digits Dataset
 
 
 
 
 
18
 
19
+ ### Motivation
20
+ The dataset was developed to provide a controlled testbed for investigating the dynamics between human perceptual uncertainty and model-based uncertainty. By including human-level uncertainty for each class, the dataset enables a more detailed analysis of how machine learning models align with or diverge from human judgment in ambiguous scenarios.
21
 
22
 
23
+ ### Composition
24
+ Each instance in the dataset consists of a grayscale image of a handwritten digit (0–9) with a resolution of 28x28 pixels. There are 7,190 instances in the dataset. The dataset is a curated sample constructed from a combination of two existing public datasets. The selection process was designed to capture samples across all difficulties; a detailed description of the sampling methodology can be found in the main text of the accompanying paper.
25
 
26
+ #### Dataset Field Descriptions
27
 
28
  * **images** (list of size `[1, 28, 28]`): List representing the grayscale image.
29
  * **original_labels** (list): The original label associated with the source data.
 
37
  * **split** (string): The dataset split, either "train", "val", or "test".
38
  * **source** (string): The origin source, either "mnist" or "mukhoti".
39
 
40
+
41
+
42
+ ### Collection Process
43
+ We explored four openly available digit datasets to identify samples that represent a broad spectrum of classification difficulty. We explored the standard MNIST, the Swedish historical handwritten dataset ARDIS, and two synthetic variants of Ambiguous-MNIST.
44
+ We first de-duplicated the datasets to ensure evaluation integrity. Following de-duplication, we performed cartography mapping using a simple one-hidden-layer feed-forward network. Guided by these steps, we selected MNIST and Mukhoti's distributional Ambiguous-MNIST as our primary sources. MNIST was chosen over ARDIS because its larger scale (70k vs 7,474 images) provides a richer tail of naturally occurring hard and ambiguous cases. Between the synthetic datasets, Mukhoti offered a more comprehensive distribution across the difficulty spectrum and better adheres to the natural data manifold compared to Weiss's variant. The resulting datasets were partitioned into training, validation, and test sets using stratified sampling to ensure the difficulty distribution remains consistent across splits. We enforced a constraint of at least 150 'easy' instances per digit in the training set to maintain sufficient class representation.
45
+
46
+
47
+ ### Cleaning/Labeling
48
+ No extensive pre-processing or cleaning was performed on the human annotations. This was an intentional design choice to preserve the natural variance in annotations, thereby the release of the dataset allows for further research into separating informative human label variation from noise. Regarding data integrity, we have retained the vast majority of collected annotations to maintain a representative distribution. We only excluded a small subset of samples from a single annotator who reported a hardware display failure during their session.
49
+
50
+
51
+ ### Licensing
52
+
53
+ The soft-digits dataset is released under the CC-BY-SA 4.0 license. This dataset is a combination of a
54
+
55
+ - re-annotated subset of the [MNIST](http://yann.lecun.com/exdb/mnist/) dataset, originally created by Yann LeCun and Corinna Cortes. (released under CC-BY-SA 3.0)
56
+ - re-annotated subset of the [distributional Ambiguous-MNIST](https://github.com/omegafragger/DDU) dataset, originally created by Jishnu Mukhoti, Andreas Kirsch, Joost van Amersfoort, Philip H.S. Torr, and Yarin Gal. (released under MIT license)