gitextract_j81cq_2h/ ├── README.md ├── configs/ │ ├── llff.txt │ ├── llff_feature.txt │ ├── llff_style.txt │ ├── nerf_synthetic.txt │ ├── nerf_synthetic_feature.txt │ └── nerf_synthetic_style.txt ├── dataLoader/ │ ├── __init__.py │ ├── blender.py │ ├── colmap2nerf.py │ ├── llff.py │ ├── nsvf.py │ ├── ray_utils.py │ ├── styleLoader.py │ ├── tankstemple.py │ └── your_own_data.py ├── extra/ │ ├── auto_run_paramsets.py │ └── compute_metrics.py ├── models/ │ ├── VGG.py │ ├── __init__.py │ ├── sh.py │ ├── styleModules.py │ ├── tensoRF.py │ └── tensorBase.py ├── opt.py ├── renderer.py ├── scripts/ │ ├── test.sh │ ├── test_feature.sh │ ├── test_style.sh │ ├── train.sh │ ├── train_feature.sh │ └── train_style.sh ├── train.py ├── train_feature.py ├── train_style.py └── utils.py