farahbs commited on
Commit
541013b
·
verified ·
1 Parent(s): a1ea329

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +83 -1
README.md CHANGED
@@ -4,4 +4,86 @@ language:
4
  - en
5
  size_categories:
6
  - 10K<n<100K
7
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - en
5
  size_categories:
6
  - 10K<n<100K
7
+ ---
8
+ # Dataset Card for Dataset Name
9
+
10
+ <!-- Provide a quick summary of the dataset. -->
11
+
12
+
13
+ ## Dataset Details
14
+
15
+ ### Dataset Description
16
+
17
+ <!-- Provide a longer summary of what this dataset is. -->
18
+ This dataset is designed to extract and record individual digits from numbers. For each number, it contains descriptions of the digit being extracted, such as the 1st digit, 2nd digit, etc., and the corresponding extracted digit. This dataset can be used for tasks such as training digit extraction models, digit recognition, and sequence-based learning tasks.
19
+
20
+
21
+ - **Curated by:** BEN SLAMA Farah
22
+ - **Language(s) (NLP):** English
23
+ - **License:** Apache-2.0
24
+
25
+ ## Uses
26
+
27
+
28
+ ### Direct Use
29
+ The dataset is primarily intended for tasks related to:
30
+
31
+ - Digit Extraction: Extracting individual digits from numbers for training digit recognition systems.
32
+ - Sequence Learning: Useful for training models on sequence-based tasks where each digit represents a step in the sequence.
33
+ - Digit Recognition: Models focusing on recognizing or extracting specific digits from numerical inputs.
34
+
35
+ ### Out-of-Scope Use
36
+
37
+ This dataset is not suited for:
38
+
39
+ - Text generation or translation tasks, as it specifically deals with extracting digits from numbers.
40
+ - General language modeling tasks, as the dataset does not contain full text but rather digit-extraction sequences.
41
+
42
+ ## Dataset Structure
43
+
44
+ The dataset is stored in CSV format and consists of two columns:
45
+
46
+ - Description: A string description indicating the digit extraction process (e.g., "extracting 1st digit from n=123").
47
+ - Result: The extracted digit (e.g., "1").
48
+
49
+ ## Dataset Creation
50
+
51
+ ### Curation Rationale
52
+
53
+ This dataset was created to provide a structured set of digit extraction examples for machine learning tasks. It is designed to help models learn how to identify and extract digits from numbers and understand the relationships between the position of digits and the actual values.
54
+
55
+ ### Source Data
56
+
57
+ The source data consists of a list of 2 to 4-digit numbers from which individual digits are extracted and recorded.
58
+
59
+ #### Data Collection and Processing
60
+
61
+ The data is synthetically generated by:
62
+
63
+ - Iterating over numbers in a range (10 to 9999)
64
+ - Extracting each digit by position (e.g., 1st digit, 2nd digit) from the number.
65
+ - Generating a description for each extraction (e.g., "extracting 1st digit from n=123").
66
+ - The dataset is generated programmatically, ensuring consistency and accuracy in the extractions.
67
+
68
+ #### Who are the source data producers?
69
+
70
+ The dataset was created by BEN SLAMA Farah, CS student, who generated the dataset programmatically.
71
+
72
+
73
+
74
+ ### Annotations [optional]
75
+
76
+ There are no external annotations, as the dataset is generated synthetically with descriptions indicating the digit extraction process.
77
+
78
+ #### Personal and Sensitive Information
79
+
80
+ The dataset is free from sensitive or personal information, as it only consists of digits extracted from numbers. There are no inherent biases in the data, as the dataset is focused purely on digit extraction.
81
+
82
+ ## Bias, Risks, and Limitations
83
+
84
+ - Limited to numeric data: The dataset is specifically designed for digit extraction from numbers and does not cover non-numeric data or other domains.
85
+ - Synthetic nature: Since the data is synthetically generated, it may not fully capture the variety of real-world use cases for digit extraction.
86
+
87
+ ### Recommendations
88
+
89
+ Users should ensure that the dataset is used in contexts where digit extraction or sequence-based learning is required. It is not suitable for tasks involving unstructured text data.