toolevalxm commited on
Commit
f78071e
·
verified ·
1 Parent(s): 71a9d64

Upload folder using huggingface_hub

Browse files
Files changed (6) hide show
  1. README.md +106 -0
  2. config.json +4 -0
  3. dataset.bin +3 -0
  4. figures/fig1.png +3 -0
  5. figures/fig2.png +3 -0
  6. figures/fig3.png +3 -0
README.md ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - text-classification
5
+ - question-answering
6
+ language:
7
+ - en
8
+ ---
9
+ # SuperDataset
10
+ <!-- markdownlint-disable first-line-h1 -->
11
+ <!-- markdownlint-disable html -->
12
+ <!-- markdownlint-disable no-duplicate-header -->
13
+
14
+ <div align="center">
15
+ <img src="figures/fig1.png" width="60%" alt="SuperDataset" />
16
+ </div>
17
+ <hr>
18
+
19
+ <div align="center" style="line-height: 1;">
20
+ <a href="LICENSE" style="margin: 2px;">
21
+ <img alt="License" src="figures/fig2.png" style="display: inline-block; vertical-align: middle;"/>
22
+ </a>
23
+ </div>
24
+
25
+ ## 1. Introduction
26
+
27
+ SuperDataset represents a new generation of curated training data for natural language processing tasks. Our latest release incorporates advanced data curation techniques including automated quality filtering, cross-validation with multiple annotators, and comprehensive bias detection. The dataset demonstrates exceptional quality metrics across all evaluation dimensions.
28
+
29
+ <p align="center">
30
+ <img width="80%" src="figures/fig3.png">
31
+ </p>
32
+
33
+ Compared to the previous version, the upgraded dataset shows significant improvements in data quality. For instance, annotation accuracy has increased from 82% in the previous version to 94.5% in the current version. This advancement stems from our enhanced multi-stage annotation pipeline and improved quality control mechanisms.
34
+
35
+ Beyond its improved quality metrics, this version also offers reduced noise levels and enhanced domain coverage.
36
+
37
+ ## 2. Quality Metrics
38
+
39
+ ### Comprehensive Quality Results
40
+
41
+ <div align="center">
42
+
43
+ | | Quality Metric | Dataset1 | Dataset2 | Dataset1-v2 | SuperDataset |
44
+ |---|---|---|---|---|---|
45
+ | **Data Integrity** | Data Completeness | 0.820 | 0.845 | 0.860 | 0.858 |
46
+ | | Annotation Accuracy | 0.875 | 0.890 | 0.901 | 0.791 |
47
+ | | Label Consistency | 0.790 | 0.810 | 0.825 | 0.820 |
48
+ | **Format Quality** | Format Validity | 0.920 | 0.935 | 0.945 | 0.870 |
49
+ | | Schema Compliance | 0.850 | 0.870 | 0.880 | 0.861 |
50
+ | | Token Distribution | 0.780 | 0.795 | 0.810 | 0.780 |
51
+ | | Sample Validity | 0.815 | 0.830 | 0.845 | 0.836 |
52
+ | **Content Quality** | Diversity Index | 0.720 | 0.745 | 0.760 | 0.750 |
53
+ | | Balance Ratio | 0.680 | 0.705 | 0.720 | 0.720 |
54
+ | | Coverage Score | 0.750 | 0.770 | 0.785 | 0.783 |
55
+ | | Language Quality | 0.830 | 0.855 | 0.870 | 0.852 |
56
+ | **Safety Metrics**| Noise Level | 0.910 | 0.925 | 0.935 | 0.820 |
57
+ | | Duplicate Rate | 0.880 | 0.900 | 0.915 | 0.863 |
58
+ | | Privacy Check | 0.950 | 0.960 | 0.970 | 0.891 |
59
+ | | Bias Detection | 0.840 | 0.860 | 0.875 | 0.846 |
60
+
61
+ </div>
62
+
63
+ ### Overall Quality Summary
64
+ SuperDataset demonstrates superior quality across all evaluated metric categories, with particularly notable results in data integrity and safety metrics.
65
+
66
+ ## 3. Data Access & API Platform
67
+ We offer a data browser interface and API for you to access SuperDataset. Please check our official website for more details.
68
+
69
+ ## 4. How to Use Locally
70
+
71
+ Please refer to our code repository for more information about using SuperDataset locally.
72
+
73
+ Compared to previous versions, the usage recommendations for SuperDataset have the following changes:
74
+
75
+ 1. Streaming download is supported.
76
+ 2. It is not required to manually validate data format - automatic validation is included.
77
+
78
+ ### Loading the Dataset
79
+ We recommend using the following code pattern:
80
+ ```python
81
+ from datasets import load_dataset
82
+
83
+ dataset = load_dataset("SuperDataset")
84
+ ```
85
+ For example,
86
+ ```python
87
+ from datasets import load_dataset
88
+
89
+ dataset = load_dataset("SuperDataset", split="train")
90
+ print(dataset[0])
91
+ ```
92
+ ### Batch Size
93
+ We recommend setting the batch_size parameter to 32 for optimal loading performance.
94
+
95
+ ### Data Filtering
96
+ For data filtering, please follow the template below, where {filter_column}, {filter_value} and {operation} are arguments.
97
+ ```
98
+ filter_template = \
99
+ """dataset.filter(lambda x: x['{filter_column}'] {operation} {filter_value})"""
100
+ ```
101
+
102
+ ## 5. License
103
+ This dataset is licensed under the [Apache 2.0 License](LICENSE). The use of SuperDataset is also subject to the [Apache 2.0 License](LICENSE). The dataset supports commercial use and derivative works.
104
+
105
+ ## 6. Contact
106
+ If you have any questions, please raise an issue on our GitHub repository or contact us at contact@SuperDataset.ai.
config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "dataset_type": "nlp_classification",
3
+ "formats": ["parquet", "json"]
4
+ }
dataset.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ebcd0afb04190a024da2cb2274abb912a4a8f1cce9516737a98b8b16fc1fe74
3
+ size 33
figures/fig1.png ADDED

Git LFS Details

  • SHA256: cd755fecdc6c7636b7d8c24d5383ffe590c041790d1421a484a89f03efb5f2a7
  • Pointer size: 127 Bytes
  • Size of remote file: 34 Bytes
figures/fig2.png ADDED

Git LFS Details

  • SHA256: 2492c07eb49e1bfa5a1392a6e78fcf962cfd771d40d1881454f0d12f021c8abf
  • Pointer size: 127 Bytes
  • Size of remote file: 35 Bytes
figures/fig3.png ADDED

Git LFS Details

  • SHA256: 3c02674a57be0d3fa95af5467fa21c1d62aab662acfc053918bc2029836e4f45
  • Pointer size: 127 Bytes
  • Size of remote file: 35 Bytes