svanhvit commited on
Commit
a82f862
1 Parent(s): 2045bbc

revert to old dl

Browse files
dataset_infos.json CHANGED
@@ -83,9 +83,17 @@
83
  }
84
  },
85
  "download_checksums": {
86
- "https://repository.clarin.is/repository/xmlui/bitstream/handle/20.500.12537/140/train-valid-test-split.zip?sequence=1&isAllowed=y": {
87
- "num_bytes": 2596872,
88
- "checksum": "d523ed9fe22b8b4b350a578cd02455d1"
 
 
 
 
 
 
 
 
89
  }
90
  },
91
  "download_size": 4858952,
 
83
  }
84
  },
85
  "download_checksums": {
86
+ "https://vesteinn.is/train.txt": {
87
+ "num_bytes": 7149961,
88
+ "checksum": "e5dc575215d9479e5203616e33276add808b935a33e192b354e72b247ae016cf"
89
+ },
90
+ "https://vesteinn.is/dev.txt": {
91
+ "num_bytes": 873215,
92
+ "checksum": "0073ee5d446e6684bcce7d48af6294efc27fccf8f40492786d997f81929573e6"
93
+ },
94
+ "https://vesteinn.is/test.txt": {
95
+ "num_bytes": 926148,
96
+ "checksum": "19f23dab7209f5669fe2e359c973f9d7149d2ec9bbb9200e062e06bc2a58225a"
97
  }
98
  },
99
  "download_size": 4858952,
icelandic-ner-MIM-GOLD-NER.py CHANGED
@@ -54,10 +54,10 @@ MIM-GOLD-NER is intended for training of named entity recognizers for Icelandic.
54
 
55
  The Named Entity Corpus corpus is distributed with the same special user license as MIM-GOLD, which is based on the MIM license, since the texts in MIM-GOLD were sampled from the MIM corpus."""
56
 
57
- _URL = "https://repository.clarin.is/repository/xmlui/bitstream/handle/20.500.12537/140/train-valid-test-split.zip?sequence=1&isAllowed=y"
58
- _TRAINING_FILE = "train/train"
59
- _DEV_FILE = "valid/valid"
60
- _TEST_FILE = "test/test"
61
 
62
 
63
  class MIMGoldNERConfig(datasets.BuilderConfig):
@@ -180,5 +180,6 @@ class MIMGoldNER(datasets.GeneratorBasedBuilder):
180
  "id": str(guid),
181
  "tokens": tokens,
182
  "ner_tags": ner_tags,
183
- "conll_ner_tags": conll_ner_tags,
 
184
  }
 
54
 
55
  The Named Entity Corpus corpus is distributed with the same special user license as MIM-GOLD, which is based on the MIM license, since the texts in MIM-GOLD were sampled from the MIM corpus."""
56
 
57
+ _URL = "https://vesteinn.is/"
58
+ _TRAINING_FILE = "train.txt"
59
+ _DEV_FILE = "dev.txt"
60
+ _TEST_FILE = "test.txt"
61
 
62
 
63
  class MIMGoldNERConfig(datasets.BuilderConfig):
 
180
  "id": str(guid),
181
  "tokens": tokens,
182
  "ner_tags": ner_tags,
183
+ "conll_ner_tags": ner_tags,
184
+
185
  }