File size: 2,069 Bytes
808c401 0e09a85 03d8433 0e09a85 fa80ff3 0e09a85 03d8433 fa80ff3 03d8433 9d6a631 03d8433 |
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 |
---
license: apache-2.0
task_categories:
- question-answering
language:
- en
size_categories:
- 100K<n<1M
tags:
- medical
- colonoscopy
- multimodal
- polyp
- endoscopy
---
# ColonINST-v1 Data Card
A large-scale mutlimodal instruction tuning dataset for colonoscopy research. *More details refer to our project page: https://github.com/ai4colonoscopy/ColonGPT*.
![image/gif](https://cdn-uploads.huggingface.co/production/uploads/65c9f61f6f1355cb7f619466/XXbaSJc4oEbBgGEbCvsIb.gif)
## Data description
We introduce a pioneering instruction tuning dataset for multimodal colonoscopy research, aimed at instructing models to execute user-driven tasks interactively. This dataset comprises of 62 categories, 300K+ colonoscopic images, 128K+ medical captions (GPT-4V) generated), and 450K+ human-machine dialogues.
## Usage
Our ColonINST-v1 dataset consists of two parts: colonoscopy images and human-machine dialogues (in JSON format). Due to privacy concerns associated with medical images, we are unable to publicly share the original colonoscopy images. Please follow [this instruction](https://github.com/ai4colonoscopy/ColonGPT/blob/main/docs/guideline-for-ColonINST.md#dataset-access-for-coloninst) to prepare all colonoscopy images.
However, the JSON files, which contain the human-machine dialogues, are available here for access. You can follow these steps:
- Make sure you have the datasets library installed. You can install it via pip:
```bash
pip install datasets
```
- You can easily download and load the dataset directly in your Python code:
```bash
from datasets import load_dataset
# Load the ColonINST-v1 dataset
dataset = load_dataset("ai4colonoscopy/ColonINST-v1")
# Once downloaded, you can explore the dataset like this
print(dataset)
```
- If you need a specific split (e.g., train, validation, or test), you can access it like this:
```bash
train_dataset = load_dataset("ai4colonoscopy/ColonINST-v1", split="train")
```
## License
The content of this project itself is licensed under the Apache license 2.0.
|