File size: 1,380 Bytes
7055d09 373b4d5 7055d09 a639161 7055d09 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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
---
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.0
num_examples: 2
download_size: 5253858
dataset_size: 16751252.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
|