forked from lioryariv/idr
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ebda2a
commit 1cd211a
Showing
3 changed files
with
212 additions
and
0 deletions.
There are no files selected for viewing
63 changes: 63 additions & 0 deletions
63
code/confs/0a2dc48d7f4fd6ff/crx_trained_cameras_idr_all_good_views.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
train{ | ||
expname = crx_trained_cameras_idr | ||
dataset_class = datasets.scene_dataset.SceneDataset | ||
model_class = models.idr.IDRNetwork | ||
loss_class = models.loss.IDRLoss | ||
learning_rate = 1.0e-4 | ||
learning_rate_cam = 1.0e-4 | ||
num_pixels = 2048 | ||
plot_freq = 100 | ||
alpha_milestones = [250,500,750,1000,1250] | ||
alpha_factor = 2 | ||
sched_milestones = [1000,1500] | ||
sched_factor = 0.5 | ||
} | ||
plot{ | ||
plot_nimgs = 1 | ||
max_depth = 3.0 | ||
resolution = 100 | ||
} | ||
loss{ | ||
eikonal_weight = 0.1 | ||
mask_weight = 100.0 | ||
alpha = 50.0 | ||
} | ||
dataset{ | ||
data_dir = CRX | ||
img_res = [600, 804] | ||
scene_id = 0a2dc48d7f4fd6ff | ||
views = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 69, 70, 71] | ||
} | ||
model{ | ||
feature_vector_size = 256 | ||
geometry_network | ||
{ | ||
d_in = 3 | ||
d_out = 1 | ||
dims = [ 512, 512, 512, 512, 512, 512, 512, 512 ] | ||
geometric_init = True | ||
bias = 0.6 | ||
skip_in = [4] | ||
weight_norm = True | ||
multires = 6 | ||
} | ||
rendering_network | ||
{ | ||
mode = idr | ||
d_in = 9 | ||
d_out = 3 | ||
dims = [ 512, 512, 512, 512] | ||
weight_norm = True | ||
multires_view = 4 | ||
} | ||
ray_tracer | ||
{ | ||
object_bounding_sphere = 1.0 | ||
sdf_threshold = 5.0e-5 | ||
line_search_step = 0.5 | ||
line_step_iters = 3 | ||
sphere_tracing_iters = 10 | ||
n_steps = 100 | ||
n_secant_steps = 8 | ||
} | ||
} |
75 changes: 75 additions & 0 deletions
75
code/confs/0a2dc48d7f4fd6ff/crx_trained_cameras_prior_all_good_views.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
train{ | ||
expname = crx_trained_cameras_prior | ||
dataset_class = datasets.scene_dataset.SceneDataset | ||
model_class = models.idr_prior.IDRNetwork | ||
loss_class = models.loss.IDRLoss | ||
learning_rate = 1.0e-4 | ||
learning_rate_cam = 1.0e-4 | ||
num_pixels = 2048 | ||
plot_freq = 100 | ||
alpha_milestones = [250,500,750,1000,1250] | ||
alpha_factor = 2 | ||
sched_milestones = [1000,1500] | ||
sched_factor = 0.5 | ||
} | ||
plot{ | ||
plot_nimgs = 1 | ||
max_depth = 3.0 | ||
resolution = 100 | ||
} | ||
loss{ | ||
eikonal_weight = 0.1 | ||
mask_weight = 100.0 | ||
alpha = 50.0 | ||
} | ||
dataset{ | ||
data_dir = CRX | ||
img_res = [600, 804] | ||
scene_id = 0a2dc48d7f4fd6ff | ||
views = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 67, 69, 70, 71] | ||
} | ||
model{ | ||
geometry_network | ||
{ | ||
d_in = 3 | ||
d_out = 1 | ||
dims = [ 512, 512, 512, 512, 512, 512, 512, 512 ] | ||
geometric_init = True | ||
bias = 0.6 | ||
skip_in = [4] | ||
weight_norm = True | ||
multires = 6 | ||
latent_size = 256 | ||
deep_sdf_weights = /home/eduardramon/idr_project/deep_sdf.pth | ||
deep_sdf_trainable = True | ||
} | ||
appearance_network | ||
{ | ||
d_in = 3 | ||
d_out = 256 | ||
dims = [ 512, 512, 512, 512, 512, 512, 512, 512 ] | ||
skip_in = [4] | ||
weight_norm = True | ||
multires = 6 | ||
} | ||
rendering_network | ||
{ | ||
feature_vector_size = 256 | ||
mode = idr | ||
d_in = 9 | ||
d_out = 3 | ||
dims = [ 512, 512, 512, 512] | ||
weight_norm = True | ||
multires_view = 4 | ||
} | ||
ray_tracer | ||
{ | ||
object_bounding_sphere = 1.0 | ||
sdf_threshold = 5.0e-5 | ||
line_search_step = 0.5 | ||
line_step_iters = 3 | ||
sphere_tracing_iters = 10 | ||
n_steps = 100 | ||
n_secant_steps = 8 | ||
} | ||
} |
74 changes: 74 additions & 0 deletions
74
code/confs/0a2dc48d7f4fd6ff/crx_trained_cameras_prior_all_views.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
train{ | ||
expname = crx_trained_cameras_prior | ||
dataset_class = datasets.scene_dataset.SceneDataset | ||
model_class = models.idr_prior.IDRNetwork | ||
loss_class = models.loss.IDRLoss | ||
learning_rate = 1.0e-4 | ||
learning_rate_cam = 1.0e-4 | ||
num_pixels = 2048 | ||
plot_freq = 100 | ||
alpha_milestones = [250,500,750,1000,1250] | ||
alpha_factor = 2 | ||
sched_milestones = [1000,1500] | ||
sched_factor = 0.5 | ||
} | ||
plot{ | ||
plot_nimgs = 1 | ||
max_depth = 3.0 | ||
resolution = 100 | ||
} | ||
loss{ | ||
eikonal_weight = 0.1 | ||
mask_weight = 100.0 | ||
alpha = 50.0 | ||
} | ||
dataset{ | ||
data_dir = CRX | ||
img_res = [600, 804] | ||
scene_id = 0a2dc48d7f4fd6ff | ||
} | ||
model{ | ||
geometry_network | ||
{ | ||
d_in = 3 | ||
d_out = 1 | ||
dims = [ 512, 512, 512, 512, 512, 512, 512, 512 ] | ||
geometric_init = True | ||
bias = 0.6 | ||
skip_in = [4] | ||
weight_norm = True | ||
multires = 6 | ||
latent_size = 256 | ||
deep_sdf_weights = /home/eduardramon/idr_project/deep_sdf.pth | ||
deep_sdf_trainable = True | ||
} | ||
appearance_network | ||
{ | ||
d_in = 3 | ||
d_out = 256 | ||
dims = [ 512, 512, 512, 512, 512, 512, 512, 512 ] | ||
skip_in = [4] | ||
weight_norm = True | ||
multires = 6 | ||
} | ||
rendering_network | ||
{ | ||
feature_vector_size = 256 | ||
mode = idr | ||
d_in = 9 | ||
d_out = 3 | ||
dims = [ 512, 512, 512, 512] | ||
weight_norm = True | ||
multires_view = 4 | ||
} | ||
ray_tracer | ||
{ | ||
object_bounding_sphere = 1.0 | ||
sdf_threshold = 5.0e-5 | ||
line_search_step = 0.5 | ||
line_step_iters = 3 | ||
sphere_tracing_iters = 10 | ||
n_steps = 100 | ||
n_secant_steps = 8 | ||
} | ||
} |