trial_image_dataset / README.md
Power108's picture
Update README.md
ceb4961 verified
|
raw
history blame
928 Bytes
# 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