File size: 9,367 Bytes
b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c b46af50 7a9ec4c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# TODO: Address all TODOs and remove all explanatory comments
"""TODO: Add a description here."""
import csv
import json
import os
import pandas as pd
import datasets
# TODO: Add BibTeX citation
# Find for instance the citation on arxiv or on the dataset repo/website
_CITATION = """ """
# TODO: Add description of the dataset here
# You can copy an official description
_DESCRIPTION = """ """
# TODO: Add a link to an official homepage for the dataset here
_HOMEPAGE = ""
# TODO: Add the licence for the dataset here if you can find it
_LICENSE = ""
# TODO: Add link to the official dataset URLs here
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
_URLS = {
"first_domain": "https://huggingface.co/great-new-dataset-first_domain.zip",
"second_domain": "https://huggingface.co/great-new-dataset-second_domain.zip",
}
AVAILABLE_LANGUAGES=['DE']#, 'EN'
SECTORS=['1']#, '1', '2', '3', '4', '5', '6', '7', '8', '9', 'C', 'E']
AVAILABLE_FEATURES={
'1': datasets.Features({
'celex_id': datasets.Value("string"),
'text_html_raw': datasets.Value("string"),
'text_html_cleaned': datasets.Value("string"),
'text_cleaned': datasets.Value("string"),
'form': datasets.Sequence(datasets.Value("string")),
'subject_matter': datasets.Sequence(datasets.Value("string")),
'current_consolidated_version': datasets.Sequence(datasets.Value("string")),
'harmonisation_of_customs_law_community_transit': datasets.Sequence(datasets.Value("string")),
'harmonisation_of_customs_law_customs_territory': datasets.Sequence(datasets.Value("string")),
'harmonisation_of_customs_law_value_for_customs_purposes': datasets.Sequence(datasets.Value("string")),
'directory_code': datasets.Sequence(datasets.Value("string")),
'eurovoc': datasets.Sequence(datasets.Value("string")),
'customs_duties_community_tariff_quotas': datasets.Sequence(datasets.Value("string")),
'customs_duties_authorisation_to_defer_application_of_cct': datasets.Sequence(datasets.Value("string")),
'harmonisation_of_customs_law_various': datasets.Sequence(datasets.Value("string")),
'customs_duties_suspensions': datasets.Sequence(datasets.Value("string"))})
}
SECTOR_DESCRIPTIONS={
'1':""
}
class SuperEurlexConfig(datasets.BuilderConfig):
"""BuilderConfig for SuperGLUE."""
def __init__(self, sector, language, features, citation, url, **kwargs):
"""BuilderConfig for SuperGLUE.
Args:
sector: sector of the wanted data
language: the language code for the language in which the text shall
be written in
features: *list[string]*, list of the features that will appear in the
feature dict.
citation: *string*, citation for the data set.
url: *string*, url for information about the data set.
**kwargs: keyword arguments forwarded to super.
"""
name=sector+'.'+language
super().__init__(name=name, version=datasets.Version("0.1.0"), **kwargs)
self.features = features
self.language = language
self.sector = sector
self.text_data_url = f"text_data/{language}/{sector}.jsonl"
self.meta_data_url = f"meta_data/{sector}.jsonl"
self.citation = citation
self.url = url
# TODO: Name of the dataset usually matches the script name with CamelCase instead of snake_case
class SuperEurlex(datasets.GeneratorBasedBuilder):
"""TODO: Short description of my dataset."""
VERSION = datasets.Version("1.1.0")
# If you need to make complex sub-parts in the datasets with configurable options
# You can create your own builder configuration class to store attribute, inheriting from datasets.BuilderConfig
# BUILDER_CONFIG_CLASS = MyBuilderConfig
# You will be able to load one or the other configurations in the following list with
# data = datasets.load_dataset('my_dataset', 'first_domain')
# data = datasets.load_dataset('my_dataset', 'second_domain')
BUILDER_CONFIGS = [
SuperEurlexConfig(#version=VERSION,
sector=sect,
language=lang,
description=SECTOR_DESCRIPTIONS[sect],
features=AVAILABLE_FEATURES[sect],
citation=_CITATION,
url=_HOMEPAGE)
for lang in AVAILABLE_LANGUAGES for sect in SECTORS
]
DEFAULT_CONFIG_NAME = "3.DE" # It's not mandatory to have a default configuration. Just use one if it make sense.
def _info(self):
# TODO: This method specifies the datasets.DatasetInfo object which contains informations and typings for the dataset
features = AVAILABLE_FEATURES[self.config.sector]
info = datasets.DatasetInfo(
# This is the description that will appear on the datasets page.
description=_DESCRIPTION,
# This defines the different columns of the dataset and their types
features=features, # Here we define them above because they are different between the two configurations
# If there's a common (input, target) tuple from the features, uncomment supervised_keys line below and
# specify them. They'll be used if as_supervised=True in builder.as_dataset.
# supervised_keys=("sentence", "label"),
# Homepage of the dataset for documentation
homepage=_HOMEPAGE,
# License for the dataset if available
license=_LICENSE,
# Citation for the dataset
citation=_CITATION,
)
return info
def _split_generators(self, dl_manager):
# TODO: This method is tasked with downloading/extracting the data and defining the splits depending on the configuration
# If several configurations are possible (listed in BUILDER_CONFIGS), the configuration selected by the user is in self.config.name
# dl_manager is a datasets.download.DownloadManager that can be used to download and extract URLS
# It can accept any type or nested list/dict and will give back the same structure with the url replaced with path to local files.
# By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive
urls = {'text': self.config.text_data_url,
'meta': self.config.meta_data_url} #_URLS[self.config.name]
data_dir = dl_manager.download_and_extract(urls)
return [
datasets.SplitGenerator(
name=datasets.Split.TRAIN,
# These kwargs will be passed to _generate_examples
gen_kwargs={
"text": data_dir['text'],
"meta": data_dir['meta'],
"language": self.config.language,
"sector": self.config.sector,
'split': 'train'
},
)
]
# method parameters are unpacked from `gen_kwargs` as given in `_split_generators`
def _generate_examples(self, text, meta, sector, language, split):
# TODO: This method handles input defined in _split_generators to yield (key, example) tuples from the dataset.
# The `key` is for legacy reasons (tfds) and is not important in itself, but must be unique for each example.
print(text)
print(meta)
print(sector)
print(split)
print(sector)
print("Reading Text Data...")
text_data = pd.read_json(text, lines=True)
text_data['celex_id'] = text_data['celex_id'].apply(lambda x: x[0] if isinstance(x,list) else x)
print("Reading Meta Data...")
meta_data = pd.read_json(meta, lines=True)
meta_data['celex_id'] = meta_data['celex_id'].apply(lambda x: x[0] if isinstance(x, list) else x)
print("Combining Text & Meta Data...")
combined_data = pd.merge(text_data, meta_data, on='celex_id')
print("Converting To final dataset...")
dataset = datasets.Dataset.from_pandas(combined_data)
dataset = dataset.remove_columns('__index_level_0__')#.cache_files()
for i, sample in enumerate(dataset):
yield i, sample
print("Hello World")
if __name__ == '__main__':
import datasets as ds
import sys
print(sys.argv[0])
dataset = ds.load_dataset(sys.argv[0],'1.DE')
print(dataset)
for sample in dataset['train']:
continue
#print(sample) |