msl_gray.py 348 Bytes
Newer Older
BobYeah's avatar
BobYeah committed
1
2
3
4
5
6
7
def update_config(config):
    # Dataset settings
    config.GRAY = True

    # Net parameters
    config.NET_TYPE = 'msl'
    config.N_ENCODE_DIM = 10
BobYeah's avatar
sync    
BobYeah committed
8
    config.FC_PARAMS.update({
BobYeah's avatar
BobYeah committed
9
10
11
        'nf': 256,
        'n_layers': 8,
        'skips': [4]
BobYeah's avatar
sync    
BobYeah committed
12
13
    })
    config.SAMPLE_PARAMS.update({
BobYeah's avatar
BobYeah committed
14
        'depth_range': (1, 50),
BobYeah's avatar
sync    
BobYeah committed
15
16
        'n_samples': 32
    })