singan.py 269 Bytes
Newer Older
dongchy920's avatar
dongchy920 committed
1
2
3
4
5
6
7
8
9
10
11
12
dataset_type = 'SinGANDataset'

data = dict(
    samples_per_gpu=1,
    workers_per_gpu=4,
    drop_last=False,
    train=dict(
        type=dataset_type,
        img_path=None,  # need to set
        min_size=25,
        max_size=250,
        scale_factor_init=0.75))