msl_less_coarse_gray.py 327 Bytes
Newer Older
BobYeah's avatar
sync    
BobYeah committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
def update_config(config):
    # Dataset settings
    config.GRAY = True

    # Net parameters
    config.NET_TYPE = 'msl'
    config.N_ENCODE_DIM = 20
    config.FC_PARAMS.update({
        'nf': 64,
        'n_layers': 12,
    })
    config.SAMPLE_PARAMS.update({
        'depth_range': (1, 20),
        'n_samples': 16
    })