├── .gitignore ├── LICENSE ├── README.md ├── method_template ├── __init__.py ├── template_config.py ├── template_datamanager.py ├── template_field.py ├── template_model.py └── template_pipeline.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerfstudio-project/nerfstudio-method-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerfstudio-project/nerfstudio-method-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerfstudio-project/nerfstudio-method-template/HEAD/README.md -------------------------------------------------------------------------------- /method_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /method_template/template_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerfstudio-project/nerfstudio-method-template/HEAD/method_template/template_config.py -------------------------------------------------------------------------------- /method_template/template_datamanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerfstudio-project/nerfstudio-method-template/HEAD/method_template/template_datamanager.py -------------------------------------------------------------------------------- /method_template/template_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerfstudio-project/nerfstudio-method-template/HEAD/method_template/template_field.py -------------------------------------------------------------------------------- /method_template/template_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerfstudio-project/nerfstudio-method-template/HEAD/method_template/template_model.py -------------------------------------------------------------------------------- /method_template/template_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerfstudio-project/nerfstudio-method-template/HEAD/method_template/template_pipeline.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nerfstudio-project/nerfstudio-method-template/HEAD/pyproject.toml --------------------------------------------------------------------------------