MedVision / README.md
YongchengYAO's picture
init release
33736c9
|
raw
history blame
1.17 kB

About

MedVision, a large-scale, multi-anatomy, multi-modality dataset for quantitative medical image analysis.

News

  • [Oct 8, 2025] πŸš€ Release MedVision dataset v1.0.0

Requirement

πŸ“ Note: trust_remote_code is no longer supported in datasets>=4.0.0, install dataset with pip install datasets==3.6.0

Use

import os
from datasets import load_dataset, config

# Set data folder
os.environ["MedVision_DATA_DIR"] = <your/data/folder>

# Pick a dataset config name and split
config = <config-name>
split_name = "test", # use "test" for testing set config; use "train" for training set config 

# Get dataset
ds = load_dataset(
        "YongchengYAO/MedVision",
        name=config,
        trust_remote_code=True,
        split=split_name,
    )

πŸ“ List of config names in info/

Environment Variables

# Set where data will be saved, requires ~1T for the complete dataset
export MedVision_DATA_DIR=<your/data/folder>

# Force download and process raw images, default to "False"
export MedVision_FORCE_DOWNLOAD_DATA="False"

# Force install dataset codebase, default to "False"
export MedVision_FORCE_INSTALL_CODE="False"