From 5f3c21558f7713b106d4eeb0ac807f79026ee2d3 Mon Sep 17 00:00:00 2001 From: shuaiqing Date: Wed, 3 May 2023 14:31:12 +0800 Subject: [PATCH] fix missing configs --- config/neuralbody/network/nerf.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 config/neuralbody/network/nerf.yml diff --git a/config/neuralbody/network/nerf.yml b/config/neuralbody/network/nerf.yml new file mode 100644 index 0000000..c8daa78 --- /dev/null +++ b/config/neuralbody/network/nerf.yml @@ -0,0 +1,21 @@ +network_module: easymocap.neuralbody.model.nerf.Nerf +network_args: + # sample_args: + # method: uniform + # N_samples: 64 + sample_args: + method: importance + N_samples: 64 + N_importance: 32 + D: 8 + W: 256 + dim_pts: 3 + dim_dir: 3 + xyz_res: 10 + view_res: 4 + skips: [4] + use_viewdirs: True + use_occupancy: True + linear_func: Linear + act_fn: expsoftplus + init_bias: -2. \ No newline at end of file