ULTRAData commited on
Commit
696103c
·
verified ·
1 Parent(s): a0ff381

Add WorldWordSemNet dataset card

Browse files
Files changed (1) hide show
  1. README.md +137 -0
README.md ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - semantic
7
+ - dictionary
8
+ - wordnet
9
+ - taxonomy
10
+ - nlp
11
+ - training-data
12
+ - knowledge-graph
13
+ - species
14
+ - gbif
15
+ pretty_name: WorldWordSemNet
16
+ size_categories:
17
+ - 1M<n<10M
18
+ ---
19
+
20
+ # WorldWordSemNet
21
+
22
+ **WorldWordSemNet** is a comprehensive English semantic dictionary dataset mapping **3,981,469 words** to a structured hierarchy of **286 semantic family classes**, built as a training substrate for next-generation language models.
23
+
24
+ ---
25
+
26
+ ## What's in it
27
+
28
+ Every entry contains:
29
+
30
+ - **`word`** — the English word or multi-word expression (including scientific species names)
31
+ - **`id`** — a hierarchical numeric semantic address (e.g. `4.2.8.319`) encoding the word's position in the semantic tree
32
+ - **`family`** — the semantic family label (e.g. `ENTITY.ANIMAL.CANINE`, `ACTION.COMMUNICATION.SPEAK_VERB`, `DESCRIPTOR.SIZE`)
33
+ - **`definitions`** — dictionary definitions where **every token in every definition is also mapped to its own semantic ID** — giving a fully grounded semantic graph of language
34
+ - **`taxonomy`** — for biological entities: full Linnaean taxonomy (kingdom → phylum → class → order → family → genus → rank → scientificName) for **2,791,312 species**
35
+ - **`species_description`** — up to 3 natural-language descriptions per species (202,745 species covered), with every token also semantically mapped
36
+
37
+ ---
38
+
39
+ ## Semantic Hierarchy
40
+
41
+ The 286 semantic families are organized into a deep hierarchy:
42
+
43
+ ```
44
+ ENTITY
45
+ ENTITY.ANIMAL
46
+ ENTITY.ANIMAL.CANINE
47
+ ENTITY.ANIMAL.FELINE
48
+ ENTITY.ANIMAL.PRIMATE
49
+ ...
50
+ ENTITY.PLANT
51
+ ENTITY.SUBSTANCE
52
+ ENTITY.SUBSTANCE.CHEMICAL
53
+ ENTITY.SUBSTANCE.FOOD
54
+ ...
55
+ ENTITY.PERSON
56
+ ENTITY.DISEASE
57
+ ACTION
58
+ ACTION.COMMUNICATION.SPEAK_VERB
59
+ ACTION.MOVE
60
+ ...
61
+ DESCRIPTOR
62
+ RELATION
63
+ TIME
64
+ PLACE
65
+ ...
66
+ ```
67
+
68
+ Numeric IDs encode the hierarchy directly: `4.2.8.319` means top-level class 4 → subclass 2 → subclass 8 → word 319. Arithmetic operations on IDs are semantically meaningful.
69
+
70
+ ---
71
+
72
+ ## Scale
73
+
74
+ | Metric | Count |
75
+ |---|---|
76
+ | Total words / entries | 3,981,469 |
77
+ | Words with definitions | 773,952 |
78
+ | Words with full taxonomy | 2,791,312 |
79
+ | Species with descriptions | 202,745 |
80
+ | Semantic families | 286 |
81
+ | File size (JSONL) | ~1.65 GB |
82
+
83
+ ---
84
+
85
+ ## Format
86
+
87
+ JSONL — one JSON object per line. Example entry:
88
+
89
+ ```json
90
+ {
91
+ "word": "dog",
92
+ "id": "4.2.8.319",
93
+ "family": "ENTITY.ANIMAL.CANINE",
94
+ "definitions": [
95
+ {
96
+ "gloss": "A mammal of the family Canidae:",
97
+ "tokens": [
98
+ ["a", "6.3.1"],
99
+ ["mammal", "4.2.23.4481"],
100
+ ["of", "1.5.2.2875"],
101
+ ["the", "6.3.379"],
102
+ ["family", "4.12.6.4773"],
103
+ ["canidae", "4.2.8.113"]
104
+ ]
105
+ }
106
+ ],
107
+ "taxonomy": {
108
+ "kingdom": "Animalia",
109
+ "phylum": "Chordata",
110
+ "class": "Mammalia",
111
+ "order": "Carnivora",
112
+ "family": "Canidae",
113
+ "genus": "Canis",
114
+ "rank": "species"
115
+ }
116
+ }
117
+ ```
118
+
119
+ ---
120
+
121
+ ## Intended Use
122
+
123
+ This dataset was originally built as the semantic substrate for **INFINITY** — a novel AI architecture that does **not use transformers**. INFINITY uses sparse directed matrices and a two-layer semantic tether mechanism, trained entirely on hierarchical numeric IDs rather than token embeddings. It is a fundamentally new approach to generative language modeling.
124
+
125
+ **WorldWordSemNet should also serve as a major kickstart for transformer-based models.** The combination of:
126
+ 1. Full semantic family labeling for nearly 4 million words
127
+ 2. Hierarchically structured numeric IDs that encode meaning arithmetically
128
+ 3. Definition tokens pre-mapped to their own semantic IDs — a fully grounded semantic graph
129
+ 4. Complete species taxonomy and biological descriptions integrated at the word level
130
+
131
+ ...makes this dataset uniquely suited for training models that require deep semantic grounding beyond simple statistical co-occurrence.
132
+
133
+ ---
134
+
135
+ ## License
136
+
137
+ Apache 2.0.