trial_image_dataset / README.md
Power108's picture
Upload dataset
a639161 verified
metadata
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: 16751252
      num_examples: 2
  download_size: 5253858
  dataset_size: 16751252

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

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