forked from OPEN-AIR-SUN/mars
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 1.65 KB
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
[project]
name = "neural_scene_graph"
version = "0.2.1"
dependencies = [
"nerfstudio"
]
[tool.setuptools.packages.find]
include = ["nsg*"]
[project.entry-points.'nerfstudio.method_configs']
nsg-vkitti-car-depth-recon-semantic = 'nsg.cicai_configs:VKITTI_Recon_NSG_Car_Depth_Semantic'
nsg-kitti-car-depth-recon = 'nsg.cicai_configs:KITTI_Recon_NSG_Car_Depth'
nsg-kitti-car-depth-nvs = 'nsg.cicai_configs:KITTI_NVS_NSG_Car_Depth'
nsg-vkitti-car-depth-recon = 'nsg.cicai_configs:VKITTI_Recon_NSG_Car_Depth'
nsg-vkitti-car-depth-nvs = 'nsg.cicai_configs:VKITTI_NVS_NSG_Car_Depth'
ablation-background-nerf = 'nsg.cicai_configs:Ablation_BG_NeRF'
ablation-background-mip-nerf = 'nsg.cicai_configs:Ablation_BG_MipNeRF'
ablation-object-wise-nerf = 'nsg.cicai_configs:Ablation_object_wise_NeRF'
ablation-object-wise-mip-nerf = 'nsg.cicai_configs:Ablation_object_wise_MipNeRF'
ablation-object-wise-nerfacto = 'nsg.cicai_configs:Ablation_object_wise_NeRFacto'
ablation-class-wise-nerf = 'nsg.cicai_configs:Ablation_class_wise_NeRF'
ablation-class-wise-mip-nerf = 'nsg.cicai_configs:Ablation_class_wise_MipNeRF'
ablation-class-wise-nerfacto = 'nsg.cicai_configs:Ablation_class_wise_NeRFacto'
ablation-warmup = 'nsg.cicai_configs:Ablation_warmup'
ablation-none-ray-sample = 'nsg.cicai_configs:Ablation_none_ray_sample'
ablation-no-depth = 'nsg.cicai_configs:Ablation_no_depth'
ablation-no-depth-kitti = 'nsg.cicai_configs:Ablation_no_depth_kitti'
[project.entry-points.'nerfstudio.dataparser_configs']
NSGkittiDataParserConfig = 'nsg.data.nsg_dataparser:NSGkittiDataParserConfigSpecification'
NSGvkittiDataParserConfig = 'nsg.data.nsg_vkitti_dataparser:NSGvkittiDataParserConfigSpecification'