_cnerf.json 1.21 KB
Newer Older
Nianchen Deng's avatar
sync    
Nianchen Deng committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
46
47
{
    "model": "CNeRF",
    "args": {
        "spherical": true,
        "color": "rgb",
        "encode_x": 10,
        "encode_d": 4,
        "space": "voxels",
        "steps": [4, 16, 8],
        "interp_on_coarse": false,
        "sub_models": [
            {
                "core_params": {
                    "nf": 256,
                    "n_layers": 2
                },
                "n_samples": 16
            },
            {
                "core_params": {
                    "nf": 256,
                    "n_layers": 2,
                    "f_chns": 256
                },
                "n_samples": 64
            },
            {
                "core_params": {
                    "nf": 256,
                    "n_layers": 2,
                    "f_chns": 256
                },
                "n_samples": 128
            }
        ]
    },
    "train": {
        "max_epochs": 150,
        "prune_epochs": [30, 40, 50, 60, 70, 80, 90, 100, 110, 120, 130, 140, 150],
        "split_epochs": [10, 30, 70, 120],
        "freeze_epochs": [50, 100],
        "checkpoint_interval": 10,
        "level_by_level": true,
        "density_regularization_weight": 1e-4,
        "density_regularization_scale": 1e4
    }
}