Upload folder using huggingface_hub
Browse files- README.md +50 -0
- tether.json +161 -0
README.md
CHANGED
|
@@ -7,6 +7,48 @@ tags:
|
|
| 7 |
- "nlp"
|
| 8 |
- "datasets"
|
| 9 |
- "tabular"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
# WordNet 3.0
|
|
@@ -33,6 +75,14 @@ tags:
|
|
| 33 |
- views/pointers.parquet
|
| 34 |
- views/frames.parquet
|
| 35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
## Citation
|
| 37 |
|
| 38 |
Miller (1995), WordNet: A Lexical Database for English.
|
|
|
|
| 7 |
- "nlp"
|
| 8 |
- "datasets"
|
| 9 |
- "tabular"
|
| 10 |
+
configs:
|
| 11 |
+
- config_name: "aggregate"
|
| 12 |
+
default: true
|
| 13 |
+
data_files:
|
| 14 |
+
- split: "noun"
|
| 15 |
+
path: "noun.parquet"
|
| 16 |
+
- split: "verb"
|
| 17 |
+
path: "verb.parquet"
|
| 18 |
+
- split: "adj"
|
| 19 |
+
path: "adj.parquet"
|
| 20 |
+
- split: "adv"
|
| 21 |
+
path: "adv.parquet"
|
| 22 |
+
- config_name: "data"
|
| 23 |
+
data_files:
|
| 24 |
+
- split: "noun"
|
| 25 |
+
path: "variants/data/noun.parquet"
|
| 26 |
+
- split: "verb"
|
| 27 |
+
path: "variants/data/verb.parquet"
|
| 28 |
+
- split: "adj"
|
| 29 |
+
path: "variants/data/adj.parquet"
|
| 30 |
+
- split: "adv"
|
| 31 |
+
path: "variants/data/adv.parquet"
|
| 32 |
+
- config_name: "index"
|
| 33 |
+
data_files:
|
| 34 |
+
- split: "noun"
|
| 35 |
+
path: "variants/index/noun.parquet"
|
| 36 |
+
- split: "verb"
|
| 37 |
+
path: "variants/index/verb.parquet"
|
| 38 |
+
- split: "adj"
|
| 39 |
+
path: "variants/index/adj.parquet"
|
| 40 |
+
- split: "adv"
|
| 41 |
+
path: "variants/index/adv.parquet"
|
| 42 |
+
- config_name: "exceptions"
|
| 43 |
+
data_files:
|
| 44 |
+
- split: "noun"
|
| 45 |
+
path: "variants/exceptions/noun.parquet"
|
| 46 |
+
- split: "verb"
|
| 47 |
+
path: "variants/exceptions/verb.parquet"
|
| 48 |
+
- split: "adj"
|
| 49 |
+
path: "variants/exceptions/adj.parquet"
|
| 50 |
+
- split: "adv"
|
| 51 |
+
path: "variants/exceptions/adv.parquet"
|
| 52 |
---
|
| 53 |
|
| 54 |
# WordNet 3.0
|
|
|
|
| 75 |
- views/pointers.parquet
|
| 76 |
- views/frames.parquet
|
| 77 |
|
| 78 |
+
## Provided
|
| 79 |
+
- context: {"repository_navigation": [{"active": false, "description": "Synset data files with glosses, words, pointers, and verb frames.", "path_in_repo": "variants/data", "splits": ["noun", "verb", "adj", "adv"], "variant": "data"}, {"active": false, "description": "Index files with lemma metadata, pointer symbol inventory, and synset offsets.", "path_in_repo": "variants/index", "splits": ["noun", "verb", "adj", "adv"], "variant": "index"}, {"active": false, "description": "Exception files mapping inflected forms to base forms.", "path_in_repo": "variants/exceptions", "splits": ["noun", "verb", "adj", "adv"], "variant": "exceptions"}], "schema": ["text", "is_record", "offset", "synset_offset", "lex_filenum", "ss_type", "w_cnt", "word_count", "words", "lemmas", "p_cnt", "pointer_count", "pointers", "frames", "gloss", "parse_error", "lemma", "lemma_text", "pos", "synset_cnt", "ptr_symbols", "sense_cnt", "tagsense_cnt", "synset_offsets", "inflected_form", "inflected_form_text", "base_forms", "base_forms_text", "variant"], "scope": "aggregate", "shared_description": "WordNet publishes an aggregate lexical view that keeps the noun, verb, adjective, and adverb splits intact while combining data, index, and exception rows under an explicit variant column.", "splits": ["noun", "verb", "adj", "adv"], "viewer_config_name": "aggregate"}
|
| 80 |
+
|
| 81 |
+
## Repository Navigation
|
| 82 |
+
- data: variants/data | Synset data files with glosses, words, pointers, and verb frames.
|
| 83 |
+
- index: variants/index | Index files with lemma metadata, pointer symbol inventory, and synset offsets.
|
| 84 |
+
- exceptions: variants/exceptions | Exception files mapping inflected forms to base forms.
|
| 85 |
+
|
| 86 |
## Citation
|
| 87 |
|
| 88 |
Miller (1995), WordNet: A Lexical Database for English.
|
tether.json
CHANGED
|
@@ -177,6 +177,86 @@
|
|
| 177 |
],
|
| 178 |
"title": "WordNet 3.0"
|
| 179 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 180 |
"repo_id": "ysginc/wordnet",
|
| 181 |
"report": {
|
| 182 |
"aggregate_variants": [
|
|
@@ -199,9 +279,90 @@
|
|
| 199 |
],
|
| 200 |
"title": "WordNet 3.0"
|
| 201 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 202 |
"records_only": true,
|
| 203 |
"variant": "aggregate"
|
| 204 |
},
|
|
|
|
| 205 |
"request": {
|
| 206 |
"path": "tether-aggregate",
|
| 207 |
"streaming": false
|
|
|
|
| 177 |
],
|
| 178 |
"title": "WordNet 3.0"
|
| 179 |
},
|
| 180 |
+
"provided": {
|
| 181 |
+
"repository_navigation": [
|
| 182 |
+
{
|
| 183 |
+
"active": false,
|
| 184 |
+
"description": "Synset data files with glosses, words, pointers, and verb frames.",
|
| 185 |
+
"path_in_repo": "variants/data",
|
| 186 |
+
"splits": [
|
| 187 |
+
"noun",
|
| 188 |
+
"verb",
|
| 189 |
+
"adj",
|
| 190 |
+
"adv"
|
| 191 |
+
],
|
| 192 |
+
"variant": "data"
|
| 193 |
+
},
|
| 194 |
+
{
|
| 195 |
+
"active": false,
|
| 196 |
+
"description": "Index files with lemma metadata, pointer symbol inventory, and synset offsets.",
|
| 197 |
+
"path_in_repo": "variants/index",
|
| 198 |
+
"splits": [
|
| 199 |
+
"noun",
|
| 200 |
+
"verb",
|
| 201 |
+
"adj",
|
| 202 |
+
"adv"
|
| 203 |
+
],
|
| 204 |
+
"variant": "index"
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"active": false,
|
| 208 |
+
"description": "Exception files mapping inflected forms to base forms.",
|
| 209 |
+
"path_in_repo": "variants/exceptions",
|
| 210 |
+
"splits": [
|
| 211 |
+
"noun",
|
| 212 |
+
"verb",
|
| 213 |
+
"adj",
|
| 214 |
+
"adv"
|
| 215 |
+
],
|
| 216 |
+
"variant": "exceptions"
|
| 217 |
+
}
|
| 218 |
+
],
|
| 219 |
+
"schema": [
|
| 220 |
+
"text",
|
| 221 |
+
"is_record",
|
| 222 |
+
"offset",
|
| 223 |
+
"synset_offset",
|
| 224 |
+
"lex_filenum",
|
| 225 |
+
"ss_type",
|
| 226 |
+
"w_cnt",
|
| 227 |
+
"word_count",
|
| 228 |
+
"words",
|
| 229 |
+
"lemmas",
|
| 230 |
+
"p_cnt",
|
| 231 |
+
"pointer_count",
|
| 232 |
+
"pointers",
|
| 233 |
+
"frames",
|
| 234 |
+
"gloss",
|
| 235 |
+
"parse_error",
|
| 236 |
+
"lemma",
|
| 237 |
+
"lemma_text",
|
| 238 |
+
"pos",
|
| 239 |
+
"synset_cnt",
|
| 240 |
+
"ptr_symbols",
|
| 241 |
+
"sense_cnt",
|
| 242 |
+
"tagsense_cnt",
|
| 243 |
+
"synset_offsets",
|
| 244 |
+
"inflected_form",
|
| 245 |
+
"inflected_form_text",
|
| 246 |
+
"base_forms",
|
| 247 |
+
"base_forms_text",
|
| 248 |
+
"variant"
|
| 249 |
+
],
|
| 250 |
+
"scope": "aggregate",
|
| 251 |
+
"shared_description": "WordNet publishes an aggregate lexical view that keeps the noun, verb, adjective, and adverb splits intact while combining data, index, and exception rows under an explicit variant column.",
|
| 252 |
+
"splits": [
|
| 253 |
+
"noun",
|
| 254 |
+
"verb",
|
| 255 |
+
"adj",
|
| 256 |
+
"adv"
|
| 257 |
+
],
|
| 258 |
+
"viewer_config_name": "aggregate"
|
| 259 |
+
},
|
| 260 |
"repo_id": "ysginc/wordnet",
|
| 261 |
"report": {
|
| 262 |
"aggregate_variants": [
|
|
|
|
| 279 |
],
|
| 280 |
"title": "WordNet 3.0"
|
| 281 |
},
|
| 282 |
+
"provided": {
|
| 283 |
+
"repository_navigation": [
|
| 284 |
+
{
|
| 285 |
+
"active": false,
|
| 286 |
+
"description": "Synset data files with glosses, words, pointers, and verb frames.",
|
| 287 |
+
"path_in_repo": "variants/data",
|
| 288 |
+
"splits": [
|
| 289 |
+
"noun",
|
| 290 |
+
"verb",
|
| 291 |
+
"adj",
|
| 292 |
+
"adv"
|
| 293 |
+
],
|
| 294 |
+
"variant": "data"
|
| 295 |
+
},
|
| 296 |
+
{
|
| 297 |
+
"active": false,
|
| 298 |
+
"description": "Index files with lemma metadata, pointer symbol inventory, and synset offsets.",
|
| 299 |
+
"path_in_repo": "variants/index",
|
| 300 |
+
"splits": [
|
| 301 |
+
"noun",
|
| 302 |
+
"verb",
|
| 303 |
+
"adj",
|
| 304 |
+
"adv"
|
| 305 |
+
],
|
| 306 |
+
"variant": "index"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"active": false,
|
| 310 |
+
"description": "Exception files mapping inflected forms to base forms.",
|
| 311 |
+
"path_in_repo": "variants/exceptions",
|
| 312 |
+
"splits": [
|
| 313 |
+
"noun",
|
| 314 |
+
"verb",
|
| 315 |
+
"adj",
|
| 316 |
+
"adv"
|
| 317 |
+
],
|
| 318 |
+
"variant": "exceptions"
|
| 319 |
+
}
|
| 320 |
+
],
|
| 321 |
+
"schema": [
|
| 322 |
+
"text",
|
| 323 |
+
"is_record",
|
| 324 |
+
"offset",
|
| 325 |
+
"synset_offset",
|
| 326 |
+
"lex_filenum",
|
| 327 |
+
"ss_type",
|
| 328 |
+
"w_cnt",
|
| 329 |
+
"word_count",
|
| 330 |
+
"words",
|
| 331 |
+
"lemmas",
|
| 332 |
+
"p_cnt",
|
| 333 |
+
"pointer_count",
|
| 334 |
+
"pointers",
|
| 335 |
+
"frames",
|
| 336 |
+
"gloss",
|
| 337 |
+
"parse_error",
|
| 338 |
+
"lemma",
|
| 339 |
+
"lemma_text",
|
| 340 |
+
"pos",
|
| 341 |
+
"synset_cnt",
|
| 342 |
+
"ptr_symbols",
|
| 343 |
+
"sense_cnt",
|
| 344 |
+
"tagsense_cnt",
|
| 345 |
+
"synset_offsets",
|
| 346 |
+
"inflected_form",
|
| 347 |
+
"inflected_form_text",
|
| 348 |
+
"base_forms",
|
| 349 |
+
"base_forms_text",
|
| 350 |
+
"variant"
|
| 351 |
+
],
|
| 352 |
+
"scope": "aggregate",
|
| 353 |
+
"shared_description": "WordNet publishes an aggregate lexical view that keeps the noun, verb, adjective, and adverb splits intact while combining data, index, and exception rows under an explicit variant column.",
|
| 354 |
+
"splits": [
|
| 355 |
+
"noun",
|
| 356 |
+
"verb",
|
| 357 |
+
"adj",
|
| 358 |
+
"adv"
|
| 359 |
+
],
|
| 360 |
+
"viewer_config_name": "aggregate"
|
| 361 |
+
},
|
| 362 |
"records_only": true,
|
| 363 |
"variant": "aggregate"
|
| 364 |
},
|
| 365 |
+
"repository_index": "tether.index.json",
|
| 366 |
"request": {
|
| 367 |
"path": "tether-aggregate",
|
| 368 |
"streaming": false
|