us_periph_new.py 367 Bytes
Newer Older
Nianchen Deng's avatar
sync    
Nianchen Deng committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from ..my import color_mode

def update_config(config):
    # Dataset settings
    config.COLOR = color_mode.RGB

    # Net parameters
    config.NET_TYPE = 'nnmsl'
    config.N_ENCODE_DIM = 10
    config.FC_PARAMS.update({
        'nf': 64,
        'n_layers': 4
    })
    config.SAMPLE_PARAMS.update({
        'depth_range': (1, 50),
        'n_samples': 16
    })