datasets
Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.
surnamesrussian-surnames
Russian Surnames
Description
This dataset contains over 300,000 Russian surnames with gender classification (m, f, u).
For a dataset of Russian given names, see Russian Names with Popularity Scores.
Usage
The dataset can be loaded using the Hugging Face datasets library.
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("rustemgareev/russian-surnames", split='train')
# Print the first example
print(dataset[0])
Example Output:
{… See the full description on the dataset page: https://huggingface.co/datasets/rustemgareev/russian-surnames.
