CoolFace
Apppublic

GoodWin/Deep-Multi-scale

sourceHugging Faceupdated 5y agoView on Hugging Face
0likes
base_data_loader.py11 linesDownload Raw Back to data
1class BaseDataLoader():2    def __init__(self):3        pass4 5    def initialize(self, opt):6        self.opt = opt7        pass8 9    def load_data(self):10        return None11