gitextract_sj4g9tfa/ ├── .gitignore ├── README.md ├── configs/ │ ├── idol_debug.yaml │ ├── idol_v0.yaml │ └── test_dataset.yaml ├── data_processing/ │ ├── prepare_cache.py │ ├── process_datasets.sh │ └── visualize_samples.py ├── dataset/ │ ├── README.md │ ├── sample/ │ │ └── param/ │ │ └── Kenya_female_fit_streetwear_50~60 years old_1501.npy │ └── visualize_samples.py ├── env/ │ └── README.md ├── lib/ │ ├── __init__.py │ ├── datasets/ │ │ ├── __init__.py │ │ ├── avatar_dataset.py │ │ └── dataloader.py │ ├── humanlrm_wrapper_sa_v1.py │ ├── mmutils/ │ │ ├── __init__.py │ │ └── initialize.py │ ├── models/ │ │ ├── __init__.py │ │ ├── decoders/ │ │ │ ├── __init__.py │ │ │ ├── uvmaps_decoder_gender.py │ │ │ └── vit_head.py │ │ ├── deformers/ │ │ │ ├── __init__.py │ │ │ ├── fast_snarf/ │ │ │ │ ├── cuda/ │ │ │ │ │ ├── filter/ │ │ │ │ │ │ ├── filter.cpp │ │ │ │ │ │ └── filter_kernel.cu │ │ │ │ │ ├── fuse_kernel/ │ │ │ │ │ │ ├── fuse_cuda.cpp │ │ │ │ │ │ └── fuse_cuda_kernel.cu │ │ │ │ │ └── precompute/ │ │ │ │ │ ├── precompute.cpp │ │ │ │ │ └── precompute_kernel.cu │ │ │ │ └── lib/ │ │ │ │ └── model/ │ │ │ │ ├── deformer_smpl.py │ │ │ │ └── deformer_smplx.py │ │ │ ├── smplx/ │ │ │ │ ├── __init__.py │ │ │ │ ├── body_models.py │ │ │ │ ├── joint_names.py │ │ │ │ ├── lbs.py │ │ │ │ ├── utils.py │ │ │ │ ├── vertex_ids.py │ │ │ │ └── vertex_joint_selector.py │ │ │ └── smplx_deformer_gender.py │ │ ├── renderers/ │ │ │ ├── __init__.py │ │ │ └── gau_renderer.py │ │ ├── sapiens/ │ │ │ ├── __init__.py │ │ │ └── sapiens_wrapper_torchscipt.py │ │ └── transformer_sa/ │ │ ├── __init__.py │ │ └── mae_decoder_v3_skip.py │ ├── ops/ │ │ ├── __init__.py │ │ └── activation.py │ └── utils/ │ ├── infer_util.py │ ├── mesh.py │ ├── mesh_utils.py │ └── train_util.py ├── run_demo.py ├── scripts/ │ ├── download_files.sh │ ├── fetch_template.sh │ └── pip_install.sh ├── setup.py └── train.py