File size: 928 Bytes
ceb4961 6eab938 d02dc76 6eab938 d02dc76 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# 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
|