mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-12-14 11:26:24 +08:00
Main training script
Summary: Implements the training script of NeRF. Reviewed By: nikhilaravi Differential Revision: D25684439 fbshipit-source-id: 8b19b6dc282eb6bf6e46ec4476bb0f13a84c90dd
This commit is contained in:
committed by
Facebook GitHub Bot
parent
5b74911881
commit
9751f1f185
44
projects/nerf/configs/pt3logo.yaml
Normal file
44
projects/nerf/configs/pt3logo.yaml
Normal file
@@ -0,0 +1,44 @@
|
||||
seed: 3
|
||||
resume: True
|
||||
stats_print_interval: 10
|
||||
validation_epoch_interval: 30
|
||||
checkpoint_epoch_interval: 30
|
||||
checkpoint_path: 'checkpoints/pt3logo_pt3d.pth'
|
||||
data:
|
||||
dataset_name: 'pt3logo'
|
||||
image_size: [512, 1024] # [height, width]
|
||||
precache_rays: True
|
||||
test:
|
||||
mode: 'export_video'
|
||||
trajectory_type: 'figure_eight'
|
||||
up: [0.0, -1.0, 0.0]
|
||||
scene_center: [0.0, 0.0, 0.0]
|
||||
n_frames: 100
|
||||
fps: 20
|
||||
optimizer:
|
||||
max_epochs: 100000
|
||||
lr: 0.0005
|
||||
lr_scheduler_step_size: 10000
|
||||
lr_scheduler_gamma: 0.1
|
||||
visualization:
|
||||
history_size: 20
|
||||
visdom: True
|
||||
visdom_server: 'localhost'
|
||||
visdom_port: 8097
|
||||
visdom_env: 'nerf_pytorch3d'
|
||||
raysampler:
|
||||
n_pts_per_ray: 64
|
||||
n_pts_per_ray_fine: 64
|
||||
n_rays_per_image: 1024
|
||||
min_depth: 8.0
|
||||
max_depth: 23.0
|
||||
stratified: True
|
||||
stratified_test: False
|
||||
chunk_size_test: 6000
|
||||
implicit_function:
|
||||
n_harmonic_functions_xyz: 10
|
||||
n_harmonic_functions_dir: 4
|
||||
n_hidden_neurons_xyz: 256
|
||||
n_hidden_neurons_dir: 128
|
||||
density_noise_std: 0.0
|
||||
n_layers_xyz: 8
|
||||
Reference in New Issue
Block a user