gitextract_mhywed_l/ ├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── configs/ │ ├── eval/ │ │ └── render_mv_image.yaml │ └── train/ │ └── gen_mat_masks.yaml ├── data/ │ ├── assets/ │ │ └── env_sphere.obj │ ├── hdr/ │ │ ├── basement_boxing_ring_2k.hdr │ │ └── poly_haven_studio_2k.hdr │ └── mesh/ │ ├── globe/ │ │ ├── globe.mtl │ │ └── globe.obj │ ├── gold_gun/ │ │ ├── gold_gun.mtl │ │ └── gold_gun.obj │ ├── kettle/ │ │ ├── kettle.mtl │ │ └── kettle.obj │ ├── red_oil/ │ │ ├── red_oil.mtl │ │ └── red_oil.obj │ └── vase/ │ ├── vase.mtl │ └── vase.obj ├── main.py ├── requirements.txt ├── scripts/ │ ├── blender_scripts/ │ │ ├── paste_pbr.blend │ │ ├── render_ori.py │ │ └── render_pbr.py │ ├── gpt_anno/ │ │ └── gpt4_query_mat.py │ └── kaolin_scripts/ │ ├── load_cfg.py │ └── src/ │ ├── __init__.py │ ├── configs/ │ │ ├── __init__.py │ │ └── train_config.py │ ├── models/ │ │ ├── __init__.py │ │ ├── mesh.py │ │ ├── render.py │ │ └── textured_mesh.py │ ├── training/ │ │ ├── __init__.py │ │ ├── trainer.py │ │ └── views_dataset.py │ └── utils.py ├── som/ │ ├── LICENSE │ ├── ckpts/ │ │ └── download_ckpt.sh │ ├── configs/ │ │ └── semantic_sam_only_sa-1b_swinL.yaml │ ├── ops/ │ │ ├── MultiScaleDeformableAttention.egg-info/ │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ └── top_level.txt │ │ ├── build/ │ │ │ ├── lib.linux-x86_64-cpython-38/ │ │ │ │ ├── functions/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ms_deform_attn_func.py │ │ │ │ └── modules/ │ │ │ │ ├── __init__.py │ │ │ │ └── ms_deform_attn.py │ │ │ └── temp.linux-x86_64-cpython-38/ │ │ │ ├── .ninja_deps │ │ │ ├── .ninja_log │ │ │ ├── build.ninja │ │ │ ├── home/ │ │ │ │ └── fangye/ │ │ │ │ └── SoM/ │ │ │ │ └── ops/ │ │ │ │ └── src/ │ │ │ │ ├── cpu/ │ │ │ │ │ └── ms_deform_attn_cpu.o │ │ │ │ ├── cuda/ │ │ │ │ │ └── ms_deform_attn_cuda.o │ │ │ │ └── vision.o │ │ │ └── mnt/ │ │ │ └── petrelfs/ │ │ │ └── fangye/ │ │ │ └── Make-it-Real_project/ │ │ │ └── som/ │ │ │ └── ops/ │ │ │ └── src/ │ │ │ ├── cpu/ │ │ │ │ └── ms_deform_attn_cpu.o │ │ │ ├── cuda/ │ │ │ │ └── ms_deform_attn_cuda.o │ │ │ └── vision.o │ │ ├── dist/ │ │ │ └── MultiScaleDeformableAttention-1.0-py3.8-linux-x86_64.egg │ │ ├── functions/ │ │ │ ├── __init__.py │ │ │ └── ms_deform_attn_func.py │ │ ├── make.sh │ │ ├── modules/ │ │ │ ├── __init__.py │ │ │ └── ms_deform_attn.py │ │ ├── setup.py │ │ ├── src/ │ │ │ ├── cpu/ │ │ │ │ ├── ms_deform_attn_cpu.cpp │ │ │ │ └── ms_deform_attn_cpu.h │ │ │ ├── cuda/ │ │ │ │ ├── ms_deform_attn_cuda.cu │ │ │ │ ├── ms_deform_attn_cuda.h │ │ │ │ └── ms_deform_im2col_cuda.cuh │ │ │ ├── ms_deform_attn.h │ │ │ └── vision.cpp │ │ └── test.py │ ├── sesam_serial.py │ └── task_adapter/ │ ├── semantic_sam/ │ │ └── tasks/ │ │ ├── __init__.py │ │ ├── automatic_mask_generator.py │ │ ├── inference_semsam_m2m_auto.py │ │ ├── interactive_idino_1o1_box.py │ │ ├── interactive_idino_m2m.py │ │ └── interactive_predictor.py │ └── utils/ │ └── visualizer.py └── utils/ ├── gen_config.py ├── gpt4_query.py ├── mask_postprocess.py ├── texture_postprocess.py └── tools.py