# coding=utf-8 # Copyright 2022 the HuggingFace Datasets Authors. # # 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. import os import datasets import pandas as pd _CITATION = """\ @article{imagenet15russakovsky, Author = {Olga Russakovsky and Jia Deng and Hao Su and Jonathan Krause and Sanjeev Satheesh and Sean Ma and Zhiheng Huang and Andrej Karpathy and Aditya Khosla and Michael Bernstein and Alexander C. Berg and Li Fei-Fei}, Title = { {ImageNet Large Scale Visual Recognition Challenge} }, Year = {2015}, journal = {International Journal of Computer Vision (IJCV)}, doi = {10.1007/s11263-015-0816-y}, volume={115}, number={3}, pages={211-252} } """ _HOMEPAGE = "https://khatt.ideas2serve.net/KHATTAgreement.php" _DESCRIPTION = """\ ILSVRC 2012, commonly known as 'ImageNet' is an image dataset organized according to the WordNet hierarchy. Each meaningful concept in WordNet, possibly described by multiple words or word phrases, is called a "synonym set" or "synset". There are more than 100,000 synsets in WordNet, majority of them are nouns (80,000+). ImageNet aims to provide on average 1000 images to illustrate each synset. Images of each concept are quality-controlled and human-annotated. In its completion, ImageNet hopes to offer tens of millions of cleanly sorted images for most of the concepts in the WordNet hierarchy. ImageNet 2012 is the most commonly used subset of ImageNet. This dataset spans 1000 object classes and contains 1,281,167 training images, 50,000 validation images and 100,000 test images """ _DATA_URL = { "train": [ "https://huggingface.co/datasets/benhachem/KHATT/resolve/main/data/Training.zip" ], "val": [ "https://huggingface.co/datasets/benhachem/KHATT/resolve/main/data/Validation.zip" ], } class KHATT(datasets.GeneratorBasedBuilder): VERSION = datasets.Version("1.0.0") def _info(self): return datasets.DatasetInfo( description=_DESCRIPTION, features=datasets.Features( { "image": datasets.Image(), "text": datasets.Value("string"), } ), homepage=_HOMEPAGE, citation=_CITATION, ) def _split_generators(self, dl_manager): """Returns SplitGenerators.""" archives = dl_manager.download(_DATA_URL) return [ datasets.SplitGenerator( name=datasets.Split.TRAIN, gen_kwargs={ "archives": [dl_manager.iter_archive(archive) for archive in archives["train"]], "split": "train", }, ), datasets.SplitGenerator( name=datasets.Split.VALIDATION, gen_kwargs={ "archives": [dl_manager.iter_archive(archive) for archive in archives["val"]], "split": "validation", }, ), ] def _generate_examples(self, archives, split): """Yields examples.""" idx = 0 for archive in archives: for path, file in archive: # If we have an image if path.endswith(".tif"): if split != "test": # image filepath format: __.TIF source = path.split('/')[0] img_file = file else: text = "" elif path.endswith(".txt"): #import ipdb; ipdb.set_trace() text = file.read() text = text.decode('utf-8') ex = {"image": {"path": path, "bytes": img_file.read()}, "text": text} if split == source: yield idx, ex else: continue idx += 1