Datasets:
File size: 4,635 Bytes
4440640 10f6a37 4440640 10f6a37 4440640 10f6a37 4440640 10f6a37 4440640 8648b26 baef826 8648b26 3af0ab4 e4e7ca6 8648b26 e4e7ca6 8648b26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
---
license: cc-by-4.0
dataset_info:
features:
- name: name
dtype: string
- name: gender
dtype: string
- name: count
dtype: int64
- name: probability
dtype: float64
- name: gender_agreement
dtype: float64
- name: prob_F
dtype: float64
- name: prob_M
dtype: float64
- name: primary_gender
dtype: string
- name: genders
dtype: string
splits:
- name: train
num_bytes: 2632451
num_examples: 40351
download_size: 997621
dataset_size: 2632451
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# NAMEXTEND
<!-- Provide a quick summary of the dataset. -->
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.
## Dataset Details
### Dataset Description
<!-- Provide a longer summary of what this dataset is. -->
Unlike [NAMEXACT](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
- *Christian* (believer in Christianity)
- *Drew* (simple past of the verb to draw)
- *Florence* (an Italian city)
- *Henry* (the SI unit of inductance)
- *Mercedes* (a car brand)
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%.
### Dataset Sources [optional]
<!-- Provide the basic links for the dataset. -->
- **Repository:** [github.com/aieng-lab/gradiend](https://github.com/aieng-lab/gradiend)
- **Paper:** [](https://arxiv.org/abs/2502.01406)
- **Original Dataset:** [Gender by Name](https://archive.ics.uci.edu/dataset/591/gender+by+name)
## Dataset Structure
- `name`: the name
- `gender`: the gender of the name (`M` for male and `F` for female)
- `count`: the count value of this name (raw value from the original dataset)
- `probability`: the probability of this name (raw value from original dataset; not normalized to this dataset!)
- `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
- `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
- `genders`: label `B` if *both* genders are contained for this name in this dataset, otherwise equal to `gender`
- `prob_F`: the probability of that name being used as a female name (i.e., 0.0 or 1.0 if `genders` != `B`)
- `prob_M`: the probability of that name being used as a male name
## Dataset Creation
### Source Data
<!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
The data is created by filtering [Gender by Name](https://archive.ics.uci.edu/dataset/591/gender+by+name).
#### Data Collection and Processing
<!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
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.
## Bias, Risks, and Limitations
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
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.
## Citation
<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
**BibTeX:**
```
@misc{drechsel2025gradiendmonosemanticfeaturelearning,
title={{GRADIEND}: Monosemantic Feature Learning within Neural Networks Applied to Gender Debiasing of Transformer Models},
author={Jonathan Drechsel and Steffen Herbold},
year={2025},
eprint={2502.01406},
archivePrefix={arXiv},
primaryClass={cs.LG},
url={https://arxiv.org/abs/2502.01406},
}
```
## Dataset Card Authors
[jdrechsel](https://huggingface.co/jdrechsel)
|