| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| """Web of science""" |
|
|
|
|
| import os |
|
|
| import datasets |
|
|
|
|
| _CITATION = """\ |
| @inproceedings{kowsari2017HDLTex, |
| title={HDLTex: Hierarchical Deep Learning for Text Classification}, |
| author={Kowsari, Kamran and Brown, Donald E and Heidarysafa, Mojtaba and Jafari Meimandi, Kiana and and Gerber, Matthew S and Barnes, Laura E}, |
| booktitle={Machine Learning and Applications (ICMLA), 2017 16th IEEE International Conference on}, |
| year={2017}, |
| organization={IEEE} |
| } |
| """ |
|
|
| _DESCRIPTION = """\ |
| The Web Of Science (WOS) dataset is a collection of data of published papers |
| available from the Web of Science. WOS has been released in three versions: WOS-46985, WOS-11967 and WOS-5736. WOS-46985 is the |
| full dataset. WOS-11967 and WOS-5736 are two subsets of WOS-46985. |
| |
| """ |
|
|
| _DATA_URL = "https://data.mendeley.com/public-files/datasets/9rw3vkcfy4/files/c9ea673d-5542-44c0-ab7b-f1311f7d61df/file_downloaded" |
|
|
|
|
| class WebOfScienceConfig(datasets.BuilderConfig): |
| """BuilderConfig for WebOfScience.""" |
|
|
| def __init__(self, **kwargs): |
| """BuilderConfig for WebOfScience. |
| |
| Args: |
| **kwargs: keyword arguments forwarded to super. |
| """ |
| super(WebOfScienceConfig, self).__init__(version=datasets.Version("6.0.0", ""), **kwargs) |
|
|
|
|
| class WebOfScience(datasets.GeneratorBasedBuilder): |
| """Web of Science""" |
|
|
| BUILDER_CONFIGS = [ |
| WebOfScienceConfig( |
| name="WOS5736", |
| description="""Web of Science Dataset WOS-5736: This dataset contains 5,736 documents with 11 categories which include 3 parents categories.""", |
| ), |
| WebOfScienceConfig( |
| name="WOS11967", |
| description="""Web of Science Dataset WOS-11967: This dataset contains 11,967 documents with 35 categories which include 7 parents categories.""", |
| ), |
| WebOfScienceConfig( |
| name="WOS46985", |
| description="""Web of Science Dataset WOS-46985: This dataset contains 46,985 documents with 134 categories which include 7 parents categories.""", |
| ), |
| ] |
|
|
| def _info(self): |
| return datasets.DatasetInfo( |
| description=_DESCRIPTION + self.config.description, |
| features=datasets.Features( |
| { |
| "input_data": datasets.Value("string"), |
| "label": datasets.Value("int32"), |
| "label_level_1": datasets.Value("int32"), |
| "label_level_2": datasets.Value("int32"), |
| } |
| ), |
| |
| |
| supervised_keys=None, |
| homepage="https://data.mendeley.com/datasets/9rw3vkcfy4/6", |
| citation=_CITATION, |
| ) |
|
|
| def _split_generators(self, dl_manager): |
| """Returns SplitGenerators.""" |
|
|
| |
|
|
| dl_path = dl_manager.download_and_extract(_DATA_URL) |
| return [ |
| datasets.SplitGenerator( |
| name=datasets.Split.TRAIN, |
| |
| gen_kwargs={ |
| "input_file": os.path.join(dl_path, self.config.name, "X.txt"), |
| "label_file": os.path.join(dl_path, self.config.name, "Y.txt"), |
| "label_level_1_file": os.path.join(dl_path, self.config.name, "YL1.txt"), |
| "label_level_2_file": os.path.join(dl_path, self.config.name, "YL2.txt"), |
| }, |
| ) |
| ] |
|
|
| def _generate_examples(self, input_file, label_file, label_level_1_file, label_level_2_file): |
| """Yields examples.""" |
| with open(input_file, encoding="utf-8") as f: |
| input_data = f.readlines() |
| with open(label_file, encoding="utf-8") as f: |
| label_data = f.readlines() |
| with open(label_level_1_file, encoding="utf-8") as f: |
| label_level_1_data = f.readlines() |
| with open(label_level_2_file, encoding="utf-8") as f: |
| label_level_2_data = f.readlines() |
| for i in range(len(input_data)): |
| yield i, { |
| "input_data": input_data[i], |
| "label": label_data[i], |
| "label_level_1": label_level_1_data[i], |
| "label_level_2": label_level_2_data[i], |
| } |
|
|