gitextract_wp6txn7z/ ├── .github/ │ └── workflows/ │ └── pypi-publish.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── data/ │ ├── car.glb │ └── chair.ply ├── gradio_app.py ├── readme.md ├── scripts/ │ ├── run.sh │ └── test_all.sh ├── setup.py └── threefiner/ ├── __init__.py ├── cli.py ├── gui.py ├── guidance/ │ ├── __init__.py │ ├── if2_ism_utils.py │ ├── if2_nfsd_utils.py │ ├── if2_utils.py │ ├── if_utils.py │ ├── sd_ism_utils.py │ ├── sd_nfsd_utils.py │ ├── sd_utils.py │ └── sdcn_utils.py ├── lights/ │ ├── LICENSE.txt │ └── mud_road_puresky_1k.hdr ├── nn.py ├── opt.py └── renderer/ ├── __init__.py ├── diffmc_renderer.py ├── mesh_renderer.py ├── pbr_diffmc_renderer.py └── pbr_mesh_renderer.py