--- configs: - config_name: default data_files: - split: train path: data/train-* dataset_info: features: - name: pmid dtype: string - name: pmcid dtype: string - name: title dtype: string - name: abstract dtype: string - name: fulltext dtype: string - name: images list: image splits: - name: train num_bytes: 1838.0 num_examples: 1 download_size: 15198 dataset_size: 1838.0 --- # My Dataset This dataset includes research articles with metadata and images. ## Features The dataset contains the following features: - `pmid`: The PubMed ID of the article (string). - `pmcid`: The PubMed Central ID of the article (string). - `title`: The title of the article (string). - `abstract`: The abstract of the article (string). - `fulltext`: The full text of the article (string). - `images`: Contains image data with the following fields: - `bytes`: Binary image data. - `path`: Relative path to the image file (string). ## Schema ```yaml dataset_info: features: - name: pmid dtype: string - name: pmcid dtype: string - name: title dtype: string - name: abstract dtype: string - name: fulltext dtype: string - name: images dtype: struct struct: - name: bytes dtype: binary - name: path dtype: string