Skip to content
Snippets Groups Projects
datasets.py 344 B
Newer Older
  • Learn to ignore specific revisions
  • Tamino Huxohl's avatar
    Tamino Huxohl committed
    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__]