Commit
·
e8534d4
1
Parent(s):
fa2544a
chore: add initial dataset files
Browse files- README.md +95 -1
- data/chuvash_names.jsonl +0 -0
README.md
CHANGED
@@ -1,3 +1,97 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- cv
|
4 |
+
license: cc-by-sa-4.0
|
5 |
+
tags:
|
6 |
+
- chuvash
|
7 |
+
pretty_name: "Chuvash Pre-Christian Names"
|
8 |
+
size_categories:
|
9 |
+
- 10k<n<100k
|
10 |
+
annotations_creators:
|
11 |
+
- expert-generated
|
12 |
+
language_creators:
|
13 |
+
- found
|
14 |
+
source_datasets:
|
15 |
+
- original
|
16 |
+
task_categories:
|
17 |
+
- other
|
18 |
+
task_ids:
|
19 |
+
- other
|
20 |
+
configs:
|
21 |
+
- config_name: default
|
22 |
+
data_files:
|
23 |
+
- split: train
|
24 |
+
path: data/chuvash_names.jsonl
|
25 |
+
dataset_info:
|
26 |
+
features:
|
27 |
+
- name: id
|
28 |
+
dtype: string
|
29 |
+
- name: name
|
30 |
+
dtype: string
|
31 |
+
- name: is_reconstructed
|
32 |
+
dtype: bool
|
33 |
+
- name: transcription
|
34 |
+
dtype: string
|
35 |
+
- name: transcription_latn
|
36 |
+
dtype: string
|
37 |
+
- name: gender
|
38 |
+
dtype: string
|
39 |
+
- name: variants
|
40 |
+
dtype: string
|
41 |
+
- name: etymology
|
42 |
+
sequence: string
|
43 |
+
- name: source
|
44 |
+
dtype: string
|
45 |
+
splits:
|
46 |
+
- name: train
|
47 |
+
num_examples: 12753
|
48 |
+
download_size: 4251417
|
49 |
+
dataset_size: 4251417
|
50 |
---
|
51 |
+
|
52 |
+
# Chuvash Pre-Christian Names
|
53 |
+
|
54 |
+
## Description
|
55 |
+
|
56 |
+
This dataset is a structured version of **["Dictionary of Chuvash Anthroponyms of the Pre-Christian Era"](https://richfizh.chuvsu.ru/images/dokuments/Dictionary_%20Anthroponyms.pdf)** (A.M. Ivanova, E.V. Fomin, 2020). It contains over 10,000 given names used by the Chuvash people in the pre-Christian period (i.e., before the 19th century).
|
57 |
+
|
58 |
+
## Usage
|
59 |
+
|
60 |
+
The dataset can be loaded using the Hugging Face `datasets` library.
|
61 |
+
|
62 |
+
```python
|
63 |
+
from datasets import load_dataset
|
64 |
+
|
65 |
+
dataset = load_dataset("rustemgareev/chuvash-names", split='train')
|
66 |
+
|
67 |
+
# Print the first example
|
68 |
+
print(dataset[0])
|
69 |
+
```
|
70 |
+
**Example Output:**
|
71 |
+
```json
|
72 |
+
{
|
73 |
+
"id": "avakkay",
|
74 |
+
"name": "Аваккай",
|
75 |
+
"is_reconstructed": false,
|
76 |
+
"transcription": "авак:аj",
|
77 |
+
"transcription_latn": "avakkay",
|
78 |
+
"gender": "m",
|
79 |
+
"variants": null,
|
80 |
+
"etymology": ["араб. أب اك ا (Абака) ‘брат отца, друг’ + -ай"],
|
81 |
+
"source": "Ашмарин т. 1, с. 38"
|
82 |
+
}
|
83 |
+
```
|
84 |
+
|
85 |
+
## Data Structure
|
86 |
+
|
87 |
+
Each record is a JSON object with the following fields:
|
88 |
+
|
89 |
+
* `id` (string): A unique identifier in Latin script.
|
90 |
+
* `name` (string): The name in Cyrillic script.
|
91 |
+
* `is_reconstructed` (boolean): `true` if the name form is a linguistic reconstruction, `false` otherwise.
|
92 |
+
* `transcription` (string): Phonetic transcription in Cyrillic script.
|
93 |
+
* `transcription_latn` (string): Phonetic transcription in Latin script.
|
94 |
+
* `gender` (string): The gender associated with the name (`m` for male, `f` for female, `u` for unisex). Can be `null`.
|
95 |
+
* `variants` (string): Spelling variants of the name. Can be `null`.
|
96 |
+
* `etymology` (list of strings): A list containing one or more versions of the name's origin.
|
97 |
+
* `source` (string): A reference to the original source of information.
|
data/chuvash_names.jsonl
ADDED
The diff for this file is too large to render.
See raw diff
|
|