Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -28,4 +28,85 @@ configs:
|
|
| 28 |
data_files:
|
| 29 |
- split: train
|
| 30 |
path: data/train-*
|
|
|
|
| 31 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
data_files:
|
| 29 |
- split: train
|
| 30 |
path: data/train-*
|
| 31 |
+
license: cc-by-4.0
|
| 32 |
---
|
| 33 |
+
# NAMEXTEND
|
| 34 |
+
|
| 35 |
+
<!-- Provide a quick summary of the dataset. -->
|
| 36 |
+
|
| 37 |
+
This dataset extends [NAMEXACT](https://huggingface.co/datasets/aieng-lab/namexact) by including words that can be used as names, but may not exclusively be used as names in every context.
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
## Dataset Details
|
| 41 |
+
|
| 42 |
+
### Dataset Description
|
| 43 |
+
|
| 44 |
+
<!-- Provide a longer summary of what this dataset is. -->
|
| 45 |
+
Unlike [NAMEXTEND](https://huggingface.co/datasets/aieng-lab/namexact), this datasets contains *words* that are mostly used as *names*, but may also be used in other contexts, such as
|
| 46 |
+
|
| 47 |
+
- *Christian* (believer in Christianity)
|
| 48 |
+
- *Drew* (simple past of the verb to draw)
|
| 49 |
+
- *Florence* (an Italian city)
|
| 50 |
+
- *Henry* (the SI unit of inductance)
|
| 51 |
+
- *Mercedes* (a car brand)
|
| 52 |
+
|
| 53 |
+
In addition, names with ambiguous gender are included - once for each `gender`. For instance, `Skyler` is included as female (`F`) name with a `probability` of 37.3%, and as male (`M`) name with a `probability` of 62.7%.
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
### Dataset Sources [optional]
|
| 57 |
+
|
| 58 |
+
<!-- Provide the basic links for the dataset. -->
|
| 59 |
+
|
| 60 |
+
- **Repository:** [More Information Needed]
|
| 61 |
+
- **Paper [optional]:** [More Information Needed]
|
| 62 |
+
- **Original Dataset:** [Gender by Name](https://archive.ics.uci.edu/dataset/591/gender+by+name)
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
## Dataset Structure
|
| 66 |
+
|
| 67 |
+
- `name`: the name
|
| 68 |
+
- `gender`: the gender of the name (`M` for male and `F` for female)
|
| 69 |
+
- `count`: the count value of this name (raw value from the original dataset)
|
| 70 |
+
- `probability`: the probability of this name (raw value from original dataset; not normalized to this dataset!)
|
| 71 |
+
- `gender_agreement`: a value describing the certainty that this name has an unambiguous gender computed as the maximum probability of that name across both genders, e.g., $max(37.7%, 62.7%)=62.7%$ for *Skyler*. For names with a unique `gender` in this dataset, this value is 1.0
|
| 72 |
+
- `primary_gender`: is equal to `gender` for names with a unique gender in this dataset, and equals otherwise the gender of that name with higher probability
|
| 73 |
+
- `genders`: label `B` if *both* genders are contained for this name in this dataset, otherwise equal to `gender`
|
| 74 |
+
- `prob_F`: the probability of that name being used as a female name (i.e., 0.0 or 1.0 if `genders` != `B`)
|
| 75 |
+
- `prob_M`: the probability of that name being used as a male name
|
| 76 |
+
|
| 77 |
+
## Dataset Creation
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
### Source Data
|
| 81 |
+
|
| 82 |
+
<!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
|
| 83 |
+
The data is created by filtering [Gender by Name](https://archive.ics.uci.edu/dataset/591/gender+by+name).
|
| 84 |
+
|
| 85 |
+
|
| 86 |
+
#### Data Collection and Processing
|
| 87 |
+
|
| 88 |
+
<!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
|
| 89 |
+
|
| 90 |
+
The original data is filtered to contain only names with a `count` of at least 100 to remove very rare names. This threshold reduces the total number of names by $72%, from 133910 to 37425.
|
| 91 |
+
|
| 92 |
+
|
| 93 |
+
|
| 94 |
+
## Bias, Risks, and Limitations
|
| 95 |
+
|
| 96 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 97 |
+
|
| 98 |
+
The original dataset provides counts of names (with their gender) for male and female babies from open-source government authorities in the US (1880-2019), UK (2011-2018), Canada (2011-2018), and Australia (1944-2019) in these periods.
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
## Citation
|
| 102 |
+
|
| 103 |
+
<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
|
| 104 |
+
|
| 105 |
+
**BibTeX:**
|
| 106 |
+
|
| 107 |
+
[More Information Needed]
|
| 108 |
+
|
| 109 |
+
## Dataset Card Authors
|
| 110 |
+
|
| 111 |
+
[jdrechsel](https://huggingface.co/jdrechsel)
|
| 112 |
+
|