Commit 338ae906 authored by Nianchen Deng's avatar Nianchen Deng
Browse files

tog'21 baseline

parent f1dd9e3a
nerf_horns.py
\ No newline at end of file
def update_config(config):
# Net parameters
config.NET_TYPE = 'nerf'
config.N_ENCODE_DIM = 10
config.FC_PARAMS.update({
config.net = 'nerf'
config.n_pos_encode = 10
config.fc.update({
'nf': 96,
'n_layers': 4
})
config.SAMPLE_PARAMS.update({
'depth_range': (1, 50),
config.sa.update({
'sample_range': (1, 50),
'n_samples': 16,
'perturb_sample': False
})
\ No newline at end of file
def update_config(config):
# Net parameters
config.net = 'snerffast4'
config.n_pos_encode = 6
#config.n_dir_encode = 4
config.fc.update({
'nf': 256,
'n_layers': 8
})
config.sa.update({
'sample_range': (1, 50),
'n_samples': 64,
'perturb_sample': False
})
nerf_trex.py
\ No newline at end of file
nerf_trex.py
\ No newline at end of file
def update_config(config):
# Net parameters
config.NET_TYPE = 'nerf'
config.N_ENCODE_DIM = 10
#config.N_DIR_ENCODE = 4
config.FC_PARAMS.update({
config.net = 'nerf'
config.n_pos_encode = 10
#config.n_dir_encode = 4
config.fc.update({
'nf': 256,
'n_layers': 8,
'skips': [4]
})
config.SAMPLE_PARAMS.update({
'depth_range': (0.7, 10),
config.sa.update({
'sample_range': (0.7, 10),
'n_samples': 128,
'perturb_sample': False
})
\ No newline at end of file
def update_config(config):
# Net parameters
config.NET_TYPE = 'nmsl'
config.FC_PARAMS.update({
config.net = 'nmsl'
config.fc.update({
'nf': 128,
'n_layers': 4
})
config.SAMPLE_PARAMS.update({
'depth_range': (1, 50),
config.sa.update({
'sample_range': (1, 50),
'n_samples': 32
})
......
def update_config(config):
# Net parameters
config.NET_TYPE = 'nnerf4'
config.N_ENCODE_DIM = 10
config.FC_PARAMS.update({
config.net = 'nnerf4'
config.n_pos_encode = 10
config.fc.update({
'nf': 128,
'n_layers': 4
})
config.SAMPLE_PARAMS.update({
'depth_range': (1, 50),
config.sa.update({
'sample_range': (1, 50),
'n_samples': 32,
'perturb_sample': True
})
def update_config(config):
# Net parameters
config.NET_TYPE = 'oracle'
config.N_ENCODE_DIM = 0
config.FC_PARAMS.update({
config.net = 'oracle'
config.n_pos_encode = 0
config.fc.update({
'nf': 256,
'n_layers': 8,
'activation': 'selu',
})
config.SAMPLE_PARAMS.update({
'depth_range': (0.4, 6),
config.sa.update({
'sample_range': (0.4, 6),
'n_samples': 128,
'perturb_sample': False
})
def update_config(config):
# Net parameters
config.NET_TYPE = 'nerf'
config.N_ENCODE_DIM = 10
config.N_DIR_ENCODE = 4
config.FC_PARAMS.update({
'nf': 256,
'n_layers': 8,
'skips': [4]
})
config.SAMPLE_PARAMS.update({
'depth_range': (0.3, 7),
'n_samples': 256,
'perturb_sample': True
})
part0.py
\ No newline at end of file
part0.py
\ No newline at end of file
part0.py
\ No newline at end of file
part0.py
\ No newline at end of file
part0.py
\ No newline at end of file
part0.py
\ No newline at end of file
part0.py
\ No newline at end of file
def update_config(config):
# Net parameters
config.NET_TYPE = 'snerffast4'
config.N_ENCODE_DIM = 6
#config.N_DIR_ENCODE = 4
config.FC_PARAMS.update({
config.net = 'snerffast2'
config.n_pos_encode = 6
#config.n_dir_encode = 4
config.fc.update({
'nf': 256,
'n_layers': 4
})
config.SAMPLE_PARAMS.update({
'depth_range': (2, 50),
'n_samples': 64,
config.sa.update({
'sample_range': (1, 50),
'n_samples': 32,
'perturb_sample': False
})
def update_config(config):
# Net parameters
config.NET_TYPE = 'nnmsl'
config.FC_PARAMS.update({
config.net = 'nnmsl'
config.fc.update({
'nf': 64,
'n_layers': 4
})
config.SAMPLE_PARAMS.update({
'depth_range': (1, 50),
config.sa.update({
'sample_range': (1, 50),
'n_samples': 16
})
\ No newline at end of file
def update_config(config):
# Net parameters
config.NET_TYPE = 'snerffast4'
config.N_ENCODE_DIM = 6
#config.N_DIR_ENCODE = 4
config.FC_PARAMS.update({
config.net = 'snerffast4'
config.n_pos_encode = 6
#config.n_dir_encode = 4
config.fc.update({
'nf': 256,
'n_layers': 4
})
config.SAMPLE_PARAMS.update({
'depth_range': (1.2, 6),
config.sa.update({
'sample_range': (1.2, 6),
'n_samples': 64,
'perturb_sample': False
})
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment