Gepe55o commited on
Commit
c11aecc
1 Parent(s): 400c890

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md CHANGED
@@ -21,4 +21,43 @@ configs:
21
  path: data/train-*
22
  - split: test
23
  path: data/test-*
 
 
24
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  path: data/train-*
22
  - split: test
23
  path: data/test-*
24
+ task_categories:
25
+ - token-classification
26
  ---
27
+
28
+ # Mountain Names NER Dataset
29
+
30
+ ## Dataset Description
31
+ A Named Entity Recognition dataset focused on identifying mountain names in text.
32
+ The dataset contains tokenized text with corresponding NER tags where:
33
+ - Tag 1: Mountain name
34
+ - Tag 0: Not a mountain name
35
+
36
+ ## Dataset Structure
37
+ The dataset contains two main columns:
38
+ - `tokens`: List of tokenized words
39
+ - `tags`: Corresponding NER tags (0 or 1)
40
+
41
+ ## Example:
42
+ ```python
43
+ {
44
+ 'tokens': ['The', 'Everest', 'is', 'the', 'highest', 'peak'],
45
+ 'tags': [0, 1, 0, 0, 0, 0]
46
+ }
47
+ ```
48
+
49
+ ## Usage:
50
+ ```python
51
+ from datasets import load_dataset
52
+
53
+ dataset = load_dataset("Gepe55o/mountain-ner-dataset")
54
+
55
+ train_data = dataset["train"]
56
+ test_data = dataset["test"]
57
+ ```
58
+
59
+ ## Dataset creation:
60
+ - Source data collected from [NERetrive](https://arxiv.org/pdf/2310.14282) and [Few-NERD](https://arxiv.org/pdf/2105.07464v6) datasets
61
+ - Filtered for mountain-related entities
62
+ - Converted to binary classification (mountain/non-mountain)
63
+