jeffreyschultz commited on
Commit
c20bbd9
·
verified ·
1 Parent(s): 5bf2c61

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +26 -0
  2. dataset.json +33 -0
README.md CHANGED
@@ -92,6 +92,32 @@ print(dataset)
92
  These splits may represent domain structure (for example part-of-speech groups) rather than train/validation/test partitions.
93
  If you need ML evaluation splits, create an explicit derived split plan in downstream preprocessing.
94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  ## Standardization
96
  - split_aliases: {"dev": "validation", "val": "validation", "valid": "validation"}
97
  - rename_map: {}
 
92
  These splits may represent domain structure (for example part-of-speech groups) rather than train/validation/test partitions.
93
  If you need ML evaluation splits, create an explicit derived split plan in downstream preprocessing.
94
 
95
+ ## Summary
96
+ WordNet is published as lexical-resource views rather than benchmark train/validation/test tasks.
97
+
98
+ ## Intended Use
99
+ - Lexical semantic analysis and symbolic NLP workflows.
100
+ - Knowledge graph and relation-structure exploration.
101
+ - Input resource for downstream task-specific data construction.
102
+
103
+ ## Schema Notes
104
+ - The same part-of-speech split names (noun, verb, adj, adv) can appear across multiple configs.
105
+ - The aggregate config combines variant outputs while preserving split names.
106
+
107
+ ## Evaluation Protocol
108
+ - For ML benchmarks, define explicit train/validation/test derivations from the lexical splits.
109
+ - Record any filtering or balancing logic to keep experiments reproducible.
110
+
111
+ ## Limitations
112
+ - Not a native benchmark dataset with pre-defined evaluation partitions.
113
+ - Coverage and lexical conventions follow WordNet source files.
114
+
115
+ ## Config Selection Guidance
116
+ - Use the data config for synset-level lexical structure.
117
+ - Use the index config for lemma and offset lookup behavior.
118
+ - Use the exceptions config for inflection-to-base mappings.
119
+ - Use aggregate when you want one entry point and can filter by variant in downstream code.
120
+
121
  ## Standardization
122
  - split_aliases: {"dev": "validation", "val": "validation", "valid": "validation"}
123
  - rename_map: {}
dataset.json CHANGED
@@ -133,6 +133,39 @@
133
  }
134
  },
135
  "dataset_id": "wordnet",
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  "pipeline": {
137
  "required_splits": [
138
  "noun",
 
133
  }
134
  },
135
  "dataset_id": "wordnet",
136
+ "documentation": {
137
+ "dataset_card": {
138
+ "custom_sections": [
139
+ {
140
+ "content": [
141
+ "Use the data config for synset-level lexical structure.",
142
+ "Use the index config for lemma and offset lookup behavior.",
143
+ "Use the exceptions config for inflection-to-base mappings.",
144
+ "Use aggregate when you want one entry point and can filter by variant in downstream code."
145
+ ],
146
+ "title": "Config Selection Guidance"
147
+ }
148
+ ],
149
+ "evaluation_protocol": [
150
+ "For ML benchmarks, define explicit train/validation/test derivations from the lexical splits.",
151
+ "Record any filtering or balancing logic to keep experiments reproducible."
152
+ ],
153
+ "intended_use": [
154
+ "Lexical semantic analysis and symbolic NLP workflows.",
155
+ "Knowledge graph and relation-structure exploration.",
156
+ "Input resource for downstream task-specific data construction."
157
+ ],
158
+ "limitations": [
159
+ "Not a native benchmark dataset with pre-defined evaluation partitions.",
160
+ "Coverage and lexical conventions follow WordNet source files."
161
+ ],
162
+ "schema_notes": [
163
+ "The same part-of-speech split names (noun, verb, adj, adv) can appear across multiple configs.",
164
+ "The aggregate config combines variant outputs while preserving split names."
165
+ ],
166
+ "summary": "WordNet is published as lexical-resource views rather than benchmark train/validation/test tasks."
167
+ }
168
+ },
169
  "pipeline": {
170
  "required_splits": [
171
  "noun",