Skip to content

Commit 1b0584f

Browse files
Krzysztof Chalupkafacebook-github-bot
Krzysztof Chalupka
authored andcommitted
Replace pluggable components to create a proper Configurable hierarchy.
Summary: This large diff rewrites a significant portion of Implicitron's config hierarchy. The new hierarchy, and some of the default implementation classes, are as follows: ``` Experiment data_source: ImplicitronDataSource dataset_map_provider data_loader_map_provider model_factory: ImplicitronModelFactory model: GenericModel optimizer_factory: ImplicitronOptimizerFactory training_loop: ImplicitronTrainingLoop evaluator: ImplicitronEvaluator ``` 1) Experiment (used to be ExperimentConfig) is now a top-level Configurable and contains as members mainly (mostly new) high-level factory Configurables. 2) Experiment's job is to run factories, do some accelerate setup and then pass the results to the main training loop. 3) ImplicitronOptimizerFactory and ImplicitronModelFactory are new high-level factories that create the optimizer, scheduler, model, and stats objects. 4) TrainingLoop is a new configurable that runs the main training loop and the inner train-validate step. 5) Evaluator is a new configurable that TrainingLoop uses to run validation/test steps. 6) GenericModel is not the only model choice anymore. Instead, ImplicitronModelBase (by default instantiated with GenericModel) is a member of Experiment and can be easily replaced by a custom implementation by the user. All the new Configurables are children of ReplaceableBase, and can be easily replaced with custom implementations. In addition, I added support for the exponential LR schedule, updated the config files and the test, as well as added a config file that reproduces NERF results and a test to run the repro experiment. Reviewed By: bottler Differential Revision: D37723227 fbshipit-source-id: b36bee880d6aa53efdd2abfaae4489d8ab1e8a27
1 parent 6b48159 commit 1b0584f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2050
-1483
lines changed

projects/implicitron_trainer/configs/repro_base.yaml

+60-54
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ defaults:
22
- default_config
33
- _self_
44
exp_dir: ./data/exps/base/
5-
architecture: generic
6-
visualize_interval: 0
7-
visdom_port: 8097
8-
data_source_args:
5+
training_loop_ImplicitronTrainingLoop_args:
6+
visualize_interval: 0
7+
max_epochs: 1000
8+
data_source_ImplicitronDataSource_args:
99
data_loader_map_provider_class_type: SequenceDataLoaderMapProvider
1010
dataset_map_provider_class_type: JsonIndexDatasetMapProvider
1111
data_loader_map_provider_SequenceDataLoaderMapProvider_args:
@@ -21,55 +21,61 @@ data_source_args:
2121
load_point_clouds: false
2222
mask_depths: false
2323
mask_images: false
24-
generic_model_args:
25-
loss_weights:
26-
loss_mask_bce: 1.0
27-
loss_prev_stage_mask_bce: 1.0
28-
loss_autodecoder_norm: 0.01
29-
loss_rgb_mse: 1.0
30-
loss_prev_stage_rgb_mse: 1.0
31-
output_rasterized_mc: false
32-
chunk_size_grid: 102400
33-
render_image_height: 400
34-
render_image_width: 400
35-
num_passes: 2
36-
implicit_function_NeuralRadianceFieldImplicitFunction_args:
37-
n_harmonic_functions_xyz: 10
38-
n_harmonic_functions_dir: 4
39-
n_hidden_neurons_xyz: 256
40-
n_hidden_neurons_dir: 128
41-
n_layers_xyz: 8
42-
append_xyz:
43-
- 5
44-
latent_dim: 0
45-
raysampler_AdaptiveRaySampler_args:
46-
n_rays_per_image_sampled_from_mask: 1024
47-
scene_extent: 8.0
48-
n_pts_per_ray_training: 64
49-
n_pts_per_ray_evaluation: 64
50-
stratified_point_sampling_training: true
51-
stratified_point_sampling_evaluation: false
52-
renderer_MultiPassEmissionAbsorptionRenderer_args:
53-
n_pts_per_ray_fine_training: 64
54-
n_pts_per_ray_fine_evaluation: 64
55-
append_coarse_samples_to_fine: true
56-
density_noise_std_train: 1.0
57-
view_pooler_args:
58-
view_sampler_args:
59-
masked_sampling: false
60-
image_feature_extractor_ResNetFeatureExtractor_args:
61-
stages:
62-
- 1
63-
- 2
64-
- 3
65-
- 4
66-
proj_dim: 16
67-
image_rescale: 0.32
68-
first_max_pool: false
69-
solver_args:
70-
breed: adam
24+
model_factory_ImplicitronModelFactory_args:
25+
visdom_port: 8097
26+
model_GenericModel_args:
27+
loss_weights:
28+
loss_mask_bce: 1.0
29+
loss_prev_stage_mask_bce: 1.0
30+
loss_autodecoder_norm: 0.01
31+
loss_rgb_mse: 1.0
32+
loss_prev_stage_rgb_mse: 1.0
33+
output_rasterized_mc: false
34+
chunk_size_grid: 102400
35+
render_image_height: 400
36+
render_image_width: 400
37+
num_passes: 2
38+
implicit_function_NeuralRadianceFieldImplicitFunction_args:
39+
n_harmonic_functions_xyz: 10
40+
n_harmonic_functions_dir: 4
41+
n_hidden_neurons_xyz: 256
42+
n_hidden_neurons_dir: 128
43+
n_layers_xyz: 8
44+
append_xyz:
45+
- 5
46+
latent_dim: 0
47+
raysampler_AdaptiveRaySampler_args:
48+
n_rays_per_image_sampled_from_mask: 1024
49+
scene_extent: 8.0
50+
n_pts_per_ray_training: 64
51+
n_pts_per_ray_evaluation: 64
52+
stratified_point_sampling_training: true
53+
stratified_point_sampling_evaluation: false
54+
renderer_MultiPassEmissionAbsorptionRenderer_args:
55+
n_pts_per_ray_fine_training: 64
56+
n_pts_per_ray_fine_evaluation: 64
57+
append_coarse_samples_to_fine: true
58+
density_noise_std_train: 1.0
59+
view_pooler_args:
60+
view_sampler_args:
61+
masked_sampling: false
62+
image_feature_extractor_ResNetFeatureExtractor_args:
63+
stages:
64+
- 1
65+
- 2
66+
- 3
67+
- 4
68+
proj_dim: 16
69+
image_rescale: 0.32
70+
first_max_pool: false
71+
optimizer_factory_ImplicitronOptimizerFactory_args:
72+
breed: Adam
73+
weight_decay: 0.0
74+
lr_policy: MultiStepLR
75+
multistep_lr_milestones: []
7176
lr: 0.0005
72-
lr_policy: multistep
73-
max_epochs: 2000
77+
gamma: 0.1
7478
momentum: 0.9
75-
weight_decay: 0.0
79+
betas:
80+
- 0.9
81+
- 0.999
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
generic_model_args:
2-
image_feature_extractor_class_type: ResNetFeatureExtractor
3-
image_feature_extractor_ResNetFeatureExtractor_args:
4-
add_images: true
5-
add_masks: true
6-
first_max_pool: true
7-
image_rescale: 0.375
8-
l2_norm: true
9-
name: resnet34
10-
normalize_image: true
11-
pretrained: true
12-
stages:
13-
- 1
14-
- 2
15-
- 3
16-
- 4
17-
proj_dim: 32
1+
model_factory_ImplicitronModelFactory_args:
2+
model_GenericModel_args:
3+
image_feature_extractor_class_type: ResNetFeatureExtractor
4+
image_feature_extractor_ResNetFeatureExtractor_args:
5+
add_images: true
6+
add_masks: true
7+
first_max_pool: true
8+
image_rescale: 0.375
9+
l2_norm: true
10+
name: resnet34
11+
normalize_image: true
12+
pretrained: true
13+
stages:
14+
- 1
15+
- 2
16+
- 3
17+
- 4
18+
proj_dim: 32
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
generic_model_args:
2-
image_feature_extractor_class_type: ResNetFeatureExtractor
3-
image_feature_extractor_ResNetFeatureExtractor_args:
4-
add_images: true
5-
add_masks: true
6-
first_max_pool: false
7-
image_rescale: 0.375
8-
l2_norm: true
9-
name: resnet34
10-
normalize_image: true
11-
pretrained: true
12-
stages:
13-
- 1
14-
- 2
15-
- 3
16-
- 4
17-
proj_dim: 16
1+
model_factory_ImplicitronModelFactory_args:
2+
model_GenericModel_args:
3+
image_feature_extractor_class_type: ResNetFeatureExtractor
4+
image_feature_extractor_ResNetFeatureExtractor_args:
5+
add_images: true
6+
add_masks: true
7+
first_max_pool: false
8+
image_rescale: 0.375
9+
l2_norm: true
10+
name: resnet34
11+
normalize_image: true
12+
pretrained: true
13+
stages:
14+
- 1
15+
- 2
16+
- 3
17+
- 4
18+
proj_dim: 16
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
generic_model_args:
2-
image_feature_extractor_class_type: ResNetFeatureExtractor
3-
image_feature_extractor_ResNetFeatureExtractor_args:
4-
stages:
5-
- 1
6-
- 2
7-
- 3
8-
first_max_pool: false
9-
proj_dim: -1
10-
l2_norm: false
11-
image_rescale: 0.375
12-
name: resnet34
13-
normalize_image: true
14-
pretrained: true
15-
view_pooler_args:
16-
feature_aggregator_AngleWeightedReductionFeatureAggregator_args:
17-
reduction_functions:
18-
- AVG
1+
model_factory_ImplicitronModelFactory_args:
2+
model_GenericModel_args:
3+
image_feature_extractor_class_type: ResNetFeatureExtractor
4+
image_feature_extractor_ResNetFeatureExtractor_args:
5+
stages:
6+
- 1
7+
- 2
8+
- 3
9+
first_max_pool: false
10+
proj_dim: -1
11+
l2_norm: false
12+
image_rescale: 0.375
13+
name: resnet34
14+
normalize_image: true
15+
pretrained: true
16+
view_pooler_args:
17+
feature_aggregator_AngleWeightedReductionFeatureAggregator_args:
18+
reduction_functions:
19+
- AVG

projects/implicitron_trainer/configs/repro_multiseq_base.yaml

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defaults:
22
- repro_base.yaml
33
- _self_
4-
data_source_args:
4+
data_source_ImplicitronDataSource_args:
55
data_loader_map_provider_SequenceDataLoaderMapProvider_args:
66
batch_size: 10
77
dataset_length_train: 1000
@@ -26,10 +26,12 @@ data_source_args:
2626
n_frames_per_sequence: -1
2727
test_on_train: true
2828
test_restrict_sequence_id: 0
29-
solver_args:
30-
max_epochs: 3000
31-
milestones:
29+
optimizer_factory_ImplicitronOptimizerFactory_args:
30+
multistep_lr_milestones:
3231
- 1000
33-
camera_difficulty_bin_breaks:
34-
- 0.666667
35-
- 0.833334
32+
training_loop_ImplicitronTrainingLoop_args:
33+
max_epochs: 3000
34+
evaluator_ImplicitronEvaluator_args:
35+
camera_difficulty_bin_breaks:
36+
- 0.666667
37+
- 0.833334
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,66 @@
11
defaults:
22
- repro_multiseq_base.yaml
33
- _self_
4-
generic_model_args:
5-
loss_weights:
6-
loss_mask_bce: 100.0
7-
loss_kl: 0.0
8-
loss_rgb_mse: 1.0
9-
loss_eikonal: 0.1
10-
chunk_size_grid: 65536
11-
num_passes: 1
12-
output_rasterized_mc: true
13-
sampling_mode_training: mask_sample
14-
global_encoder_class_type: SequenceAutodecoder
15-
global_encoder_SequenceAutodecoder_args:
16-
autodecoder_args:
17-
n_instances: 20000
18-
init_scale: 1.0
19-
encoding_dim: 256
20-
implicit_function_IdrFeatureField_args:
21-
n_harmonic_functions_xyz: 6
22-
bias: 0.6
23-
d_in: 3
24-
d_out: 1
25-
dims:
26-
- 512
27-
- 512
28-
- 512
29-
- 512
30-
- 512
31-
- 512
32-
- 512
33-
- 512
34-
geometric_init: true
35-
pooled_feature_dim: 0
36-
skip_in:
37-
- 6
38-
weight_norm: true
39-
renderer_SignedDistanceFunctionRenderer_args:
40-
ray_tracer_args:
41-
line_search_step: 0.5
42-
line_step_iters: 3
43-
n_secant_steps: 8
44-
n_steps: 100
45-
object_bounding_sphere: 8.0
46-
sdf_threshold: 5.0e-05
47-
ray_normal_coloring_network_args:
48-
d_in: 9
49-
d_out: 3
4+
model_factory_ImplicitronModelFactory_args:
5+
model_GenericModel_args:
6+
loss_weights:
7+
loss_mask_bce: 100.0
8+
loss_kl: 0.0
9+
loss_rgb_mse: 1.0
10+
loss_eikonal: 0.1
11+
chunk_size_grid: 65536
12+
num_passes: 1
13+
output_rasterized_mc: true
14+
sampling_mode_training: mask_sample
15+
global_encoder_class_type: SequenceAutodecoder
16+
global_encoder_SequenceAutodecoder_args:
17+
autodecoder_args:
18+
n_instances: 20000
19+
init_scale: 1.0
20+
encoding_dim: 256
21+
implicit_function_IdrFeatureField_args:
22+
n_harmonic_functions_xyz: 6
23+
bias: 0.6
24+
d_in: 3
25+
d_out: 1
5026
dims:
5127
- 512
5228
- 512
5329
- 512
5430
- 512
55-
mode: idr
56-
n_harmonic_functions_dir: 4
31+
- 512
32+
- 512
33+
- 512
34+
- 512
35+
geometric_init: true
5736
pooled_feature_dim: 0
37+
skip_in:
38+
- 6
5839
weight_norm: true
59-
raysampler_AdaptiveRaySampler_args:
60-
n_rays_per_image_sampled_from_mask: 1024
61-
n_pts_per_ray_training: 0
62-
n_pts_per_ray_evaluation: 0
63-
scene_extent: 8.0
64-
renderer_class_type: SignedDistanceFunctionRenderer
65-
implicit_function_class_type: IdrFeatureField
40+
renderer_SignedDistanceFunctionRenderer_args:
41+
ray_tracer_args:
42+
line_search_step: 0.5
43+
line_step_iters: 3
44+
n_secant_steps: 8
45+
n_steps: 100
46+
object_bounding_sphere: 8.0
47+
sdf_threshold: 5.0e-05
48+
ray_normal_coloring_network_args:
49+
d_in: 9
50+
d_out: 3
51+
dims:
52+
- 512
53+
- 512
54+
- 512
55+
- 512
56+
mode: idr
57+
n_harmonic_functions_dir: 4
58+
pooled_feature_dim: 0
59+
weight_norm: true
60+
raysampler_AdaptiveRaySampler_args:
61+
n_rays_per_image_sampled_from_mask: 1024
62+
n_pts_per_ray_training: 0
63+
n_pts_per_ray_evaluation: 0
64+
scene_extent: 8.0
65+
renderer_class_type: SignedDistanceFunctionRenderer
66+
implicit_function_class_type: IdrFeatureField

0 commit comments

Comments
 (0)