gitextract_gh4x629c/ ├── .gitignore ├── LICENSE.md ├── README.md ├── arguments/ │ └── __init__.py ├── convert.py ├── environment.yml ├── full_eval.py ├── gaussian_renderer/ │ ├── __init__.py │ └── network_gui.py ├── lpipsPyTorch/ │ ├── __init__.py │ └── modules/ │ ├── lpips.py │ ├── networks.py │ └── utils.py ├── metrics.py ├── render.py ├── render_lerf_by_text.py ├── scene/ │ ├── __init__.py │ ├── cameras.py │ ├── colmap_loader.py │ ├── dataset_readers.py │ ├── gaussian_model.py │ └── kmeans_quantize.py ├── scripts/ │ ├── compute_lerf_iou.py │ ├── eval_scannet.py │ ├── render_by_click.py │ ├── scannet2blender.py │ ├── train_lerf.sh │ ├── train_scannet.sh │ └── vis_opengs_pts_feat.py ├── train.py └── utils/ ├── camera_utils.py ├── general_utils.py ├── graphics_utils.py ├── image_utils.py ├── loss_utils.py ├── opengs_utlis.py ├── sh_utils.py └── system_utils.py