lukeslp commited on
Commit
29767f9
·
verified ·
1 Parent(s): 0829606

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +42 -6
README.md CHANGED
@@ -2,17 +2,21 @@
2
  license: cc-by-sa-3.0
3
  task_categories:
4
  - feature-extraction
 
 
5
  tags:
6
  - linguistics
7
  - etymology
8
  - historical-linguistics
9
  - cognates
10
  - language-families
 
11
  - phonology
12
  - typology
13
  - nlp
14
  - glottolog
15
  - wiktionary
 
16
  size_categories:
17
  - 1M<n<10M
18
  ---
@@ -21,13 +25,13 @@ size_categories:
21
 
22
  How did the word 'mother' travel from Proto-Indo-European *méh₂tēr to modern languages across four continents? This dataset maps 4.17 million etymological relationships connecting words across 19,401 languages.
23
 
24
- The Etymology Atlas integrates five authoritative linguistic sources into a unified graph structure:
25
 
26
- **etymology-db**: 3.75 million word relationships extracted from Wiktionary, capturing borrowings, cognates, derivations, and semantic shifts
27
- **Glottolog**: Complete catalog of the world's languages with geographic coordinates, family trees, and endangerment status
28
- **Lexibank IE-CoR**: 4,981 expert-annotated cognate sets for Indo-European languagesthe gold standard for computational historical linguistics
29
- **PHOIBLE**: Phoneme inventories for 2,177 languages with articulatory features (manner, place, voicing)
30
- **WALS**: 76,475 typological feature values covering word order, tone systems, case marking, and 189 other structural properties
31
 
32
  Researchers can trace how words evolved, map language contact zones, analyze sound change patterns, or build phylogenetic models of language families. The Parquet format enables efficient querying of the full graph on a laptop.
33
 
@@ -43,6 +47,26 @@ Data sources are linked by ISO 639-3 codes and Glottocodes, enabling cross-table
43
  | `phonemes.parquet` | 105,484 | PHOIBLE phoneme data |
44
  | `linguistic_features.parquet` | 76,475 | WALS typological features |
45
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  ## Citation
47
 
48
  ```bibtex
@@ -55,6 +79,18 @@ Data sources are linked by ISO 639-3 codes and Glottocodes, enabling cross-table
55
  }
56
  ```
57
 
 
 
 
 
 
 
 
 
58
  ## License
59
 
60
  CC BY-SA 3.0
 
 
 
 
 
2
  license: cc-by-sa-3.0
3
  task_categories:
4
  - feature-extraction
5
+ language:
6
+ - en
7
  tags:
8
  - linguistics
9
  - etymology
10
  - historical-linguistics
11
  - cognates
12
  - language-families
13
+ - indo-european
14
  - phonology
15
  - typology
16
  - nlp
17
  - glottolog
18
  - wiktionary
19
+ pretty_name: "Etymology Atlas: Global Language Relationships"
20
  size_categories:
21
  - 1M<n<10M
22
  ---
 
25
 
26
  How did the word 'mother' travel from Proto-Indo-European *méh₂tēr to modern languages across four continents? This dataset maps 4.17 million etymological relationships connecting words across 19,401 languages.
27
 
28
+ The Etymology Atlas integrates five authoritative linguistic sources into a graph structure:
29
 
30
+ - **etymology-db**: 3.75 million word relationships extracted from Wiktionary, capturing borrowings, cognates, derivations, and semantic shifts
31
+ - **Glottolog**: Complete catalog of the world's languages with geographic coordinates, family trees, and endangerment status
32
+ - **Lexibank IE-CoR**: 4,981 expert-annotated cognate sets for Indo-European languages, the gold standard for computational historical linguistics
33
+ - **PHOIBLE**: Phoneme inventories for 2,177 languages with articulatory features (manner, place, voicing)
34
+ - **WALS**: 76,475 typological feature values covering word order, tone systems, case marking, and 189 other structural properties
35
 
36
  Researchers can trace how words evolved, map language contact zones, analyze sound change patterns, or build phylogenetic models of language families. The Parquet format enables efficient querying of the full graph on a laptop.
37
 
 
47
  | `phonemes.parquet` | 105,484 | PHOIBLE phoneme data |
48
  | `linguistic_features.parquet` | 76,475 | WALS typological features |
49
 
50
+ ## Usage
51
+
52
+ ```python
53
+ import pandas as pd
54
+
55
+ # Load the core etymology graph (4.17M word relationships)
56
+ df = pd.read_parquet("etymologies.parquet")
57
+ # Columns: word, language, relation_type, related_word, related_language
58
+
59
+ # Load language metadata
60
+ langs = pd.read_parquet("languages.parquet")
61
+ # 19,401 languages: ISO codes, coordinates, family, endangerment status
62
+
63
+ # Find all words related to 'mother' across languages
64
+ mother_cognates = df[df['word'] == 'mother']
65
+
66
+ # Join with language metadata to add coordinates
67
+ result = mother_cognates.merge(langs[['glottocode','latitude','longitude','family']], on='glottocode')
68
+ ```
69
+
70
  ## Citation
71
 
72
  ```bibtex
 
79
  }
80
  ```
81
 
82
+ **Visualization**: [Language Tree at dr.eamer.dev](https://dr.eamer.dev/datavis/poems/language/tree.html)
83
+
84
+ ## Distribution
85
+
86
+ - **GitHub**: [lukeslp/etymology-atlas](https://github.com/lukeslp/etymology-atlas)
87
+ - **Kaggle**: [lucassteuber/etymology-atlas](https://www.kaggle.com/datasets/lucassteuber/etymology-atlas)
88
+ - **HuggingFace**: [lukeslp/etymology-atlas](https://huggingface.co/datasets/lukeslp/etymology-atlas)
89
+
90
  ## License
91
 
92
  CC BY-SA 3.0
93
+
94
+ ## Author
95
+
96
+ **Luke Steuber** · [lukesteuber.com](https://lukesteuber.com) · [@lukesteuber.com](https://bsky.app/profile/lukesteuber.com)