forked from OPEN-AIR-SUN/mars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 2.21 KB
/
pyproject.toml
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
48
49
50
51
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mars-nerfstudio"
version = "0.3.3a1"
description = "The official code repository for the paper: MARS: An Instance-aware, Modular and Realistic Simulator for Autonomous Driving"
readme = "README.md"
license = { text="Apache 2.0" }
requires-python = ">=3.8.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
]
dependencies = [
"nerfstudio>=0.3.2",
"torchtyping",
"torch<2.1.0", # we found the latest version of torch not stable, but feel free to remove this constraint
]
[project.urls]
"Homeage" = "https://open-air-sun.github.io/mars"
[tool.setuptools.packages.find]
include = ["mars*"]
[project.entry-points.'nerfstudio.method_configs']
mars-vkitti-car-depth-recon-semantic = 'mars.cicai_configs:VKITTI_Recon_Mars_Car_Depth_Semantic'
mars-kitti-car-depth-recon = 'mars.cicai_configs:KITTI_Recon_Mars_Car_Depth'
mars-kitti-car-depth-nvs = 'mars.cicai_configs:KITTI_NVS_Mars_Car_Depth'
mars-vkitti-car-depth-recon = 'mars.cicai_configs:VKITTI_Recon_Mars_Car_Depth'
mars-vkitti-car-depth-nvs = 'mars.cicai_configs:VKITTI_NVS_Mars_Car_Depth'
ablation-background-nerf = 'mars.cicai_configs:Ablation_BG_NeRF'
ablation-background-mip-nerf = 'mars.cicai_configs:Ablation_BG_MipNeRF'
ablation-object-wise-nerf = 'mars.cicai_configs:Ablation_object_wise_NeRF'
ablation-object-wise-mip-nerf = 'mars.cicai_configs:Ablation_object_wise_MipNeRF'
ablation-object-wise-nerfacto = 'mars.cicai_configs:Ablation_object_wise_NeRFacto'
ablation-class-wise-nerf = 'mars.cicai_configs:Ablation_class_wise_NeRF'
ablation-class-wise-mip-nerf = 'mars.cicai_configs:Ablation_class_wise_MipNeRF'
ablation-class-wise-nerfacto = 'mars.cicai_configs:Ablation_class_wise_NeRFacto'
ablation-warmup = 'mars.cicai_configs:Ablation_warmup'
ablation-none-ray-sample = 'mars.cicai_configs:Ablation_none_ray_sample'
ablation-no-depth = 'mars.cicai_configs:Ablation_no_depth'
ablation-no-depth-kitti = 'mars.cicai_configs:Ablation_no_depth_kitti'
[project.entry-points.'nerfstudio.dataparser_configs']
KittiData = 'mars.data.mars_kitti_dataparser:KittiParserSpec'
VKittiData = 'mars.data.mars_vkitti_dataparser:VKittiParserSpec'