gitextract_38wvuzcu/ ├── LICENSE.txt ├── LICENSE_SMAL_MODEL.txt ├── README.md ├── __init__.py ├── _config.yml ├── data/ │ ├── __init__.py │ ├── smal_base.py │ └── zebra.py ├── docs/ │ └── tmp.txt ├── experiments/ │ ├── __init__.py │ └── smal_shape.py ├── external/ │ ├── __init__.py │ └── install_external.sh ├── nnutils/ │ ├── __init__.py │ ├── geom_utils.py │ ├── loss_utils.py │ ├── net_blocks.py │ ├── nmr.py │ ├── perceptual_loss.py │ ├── smal_mesh_eval.py │ ├── smal_mesh_net.py │ ├── smal_predictor.py │ └── train_utils.py ├── requirements.txt ├── scripts/ │ ├── smalst_evaluation_run.sh │ ├── smalst_op_run.sh │ └── smalst_train_run.sh ├── smal_eval.py ├── smal_model/ │ ├── __init__.py │ ├── batch_lbs.py │ ├── smal_basics.py │ ├── smal_torch.py │ ├── symIdx.pkl │ ├── template_w_tex_uv.mtl │ └── template_w_tex_uv.obj ├── smpl_models/ │ ├── my_smpl_00781_4_all.pkl │ ├── my_smpl_00781_4_all_template_w_tex_uv_001.pkl │ ├── my_smpl_data_00781_4_all.pkl │ └── symIdx.pkl ├── testset_shape_experiments_crops.py ├── utils/ │ ├── __init__.py │ ├── geometry.py │ ├── image.py │ ├── mesh.py │ ├── obj2nmr.py │ ├── smal_vis.py │ ├── transformations.py │ ├── visualizer.py │ └── visutil.py └── zebra_data/ └── verts2kp.pkl