From names in multiple languages to genders.
Project description
Name2Gender
From names in multiple languages to genders.
Installation
- From PyPi
pip install -U name2gender
or
uv add -U name2gender
- From Github
pip install git+https://github.com/vortezwohl/Name2Gender.git
Quick Start
-
Import SDKs
from name2gender import Name2Gender, Gender
-
Gender recognition based on names
n2g = Name2Gender() names = ['吴子豪', '吴彦祖', '梅艳芳', '张曼玉', 'Donald Trump', 'Ivanka Trump', 'Justin Bieber', 'The Weeknd', 'Luigi Nicholas Mangione', 'Elizabeth II', 'Henry VIII'] for name in names: _gender, _prob = n2g(name, return_probability=True) print(name, 'is', _gender, 'with a probability of', f'{_prob * 100:.2f}%')
stdout:
吴子豪 is Gender.Male with a probability of 99.71% 吴彦祖 is Gender.Male with a probability of 100.00% 梅艳芳 is Gender.Female with a probability of 99.99% 张曼玉 is Gender.Female with a probability of 99.92% Donald Trump is Gender.Male with a probability of 99.90% Ivanka Trump is Gender.Female with a probability of 99.66% Justin Bieber is Gender.Male with a probability of 100.00% The Weeknd is Gender.Male with a probability of 97.66% Luigi Nicholas Mangione is Gender.Male with a probability of 99.27% Elizabeth II is Gender.Female with a probability of 99.71% Henry VIII is Gender.Male with a probability of 99.90%
Use Name2Gender with CLI
-
Install model
n2g install name2gender-smallstdout:
Successfully installed model "name2gender-small". -
Predict genders
n2g predict LadyGagastdout:
"LadyGaga" is FEMALE with an probability of 99.64%. -
Uninstall model
n2g uninstall name2gender-smallstdout:
Model "name2gender-small" is uninstalled.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
name2gender-0.0.5.tar.gz
(16.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file name2gender-0.0.5.tar.gz.
File metadata
- Download URL: name2gender-0.0.5.tar.gz
- Upload date:
- Size: 16.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d3ca0f154c7696766cf7f1f40dc681fac0d0485c48a7a49477b02de0844f75f
|
|
| MD5 |
a85558cf4dd680e4b5478f19e9a72df7
|
|
| BLAKE2b-256 |
434243bc95bd27f20e9e3f13a99e08ff928e2f9a7e6ca27489a9bdb789953ec1
|
File details
Details for the file name2gender-0.0.5-py3-none-any.whl.
File metadata
- Download URL: name2gender-0.0.5-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
248e20507f78ba482783d21c2e26b7394c33cacb16228fc7915ce98cfdae6b31
|
|
| MD5 |
4e6a46c51873d2a6a07f328c3b388bd8
|
|
| BLAKE2b-256 |
1ba4ecc47c7dd665dbc3fad34cd95b9d5899f7e497bad803d2af58a7f5c6c64e
|