Newer
Older
import os
import pandas as pd
import pydicom
from torch.utils.data import Dataset
class MuMapDataset(Dataset):
def __init__(self):
super().__init__()
# read csv file and from that access dicom files
def __getitem__(self, index):
pass
def __len__(self):
pass
__all__ = [MuMapDataset.__name__]