gitextract_su3bycqo/ ├── AutoEncoder/ │ ├── cfg/ │ │ ├── deepfashion3d/ │ │ │ └── deepfashion3d.yaml │ │ ├── pix3d/ │ │ │ └── pix3d.yaml │ │ └── shapenet/ │ │ └── text2shape.yaml │ ├── data/ │ │ ├── __init__.py │ │ └── dataset.py │ ├── dataset_info_files/ │ │ ├── Deepfashion3d/ │ │ │ ├── deepfashion3d_test.txt │ │ │ └── deepfashion3d_train.txt │ │ ├── Pix3d/ │ │ │ ├── test.txt │ │ │ └── train.txt │ │ ├── ShapeNet_filelists/ │ │ │ ├── 02691156_test.lst │ │ │ ├── 02691156_train.lst │ │ │ ├── 02828884_test.lst │ │ │ ├── 02828884_train.lst │ │ │ ├── 02933112_test.lst │ │ │ ├── 02933112_train.lst │ │ │ ├── 02958343_test.lst │ │ │ ├── 02958343_train.lst │ │ │ ├── 03001627_test.lst │ │ │ ├── 03001627_train.lst │ │ │ ├── 03211117_test.lst │ │ │ ├── 03211117_train.lst │ │ │ ├── 03636649_test.lst │ │ │ ├── 03636649_train.lst │ │ │ ├── 03691459_test.lst │ │ │ ├── 03691459_train.lst │ │ │ ├── 04090263_test.lst │ │ │ ├── 04090263_train.lst │ │ │ ├── 04256520_test.lst │ │ │ ├── 04256520_train.lst │ │ │ ├── 04379243_test.lst │ │ │ ├── 04379243_train.lst │ │ │ ├── 04401088_test.lst │ │ │ ├── 04401088_train.lst │ │ │ ├── 04530566_test.lst │ │ │ └── 04530566_train.lst │ │ ├── info-pix3d.json │ │ └── info-shapenet.json │ ├── encdec/ │ │ ├── DynamicSampler.py │ │ ├── __init__.py │ │ ├── export_meshes.py │ │ ├── normalized_obj.py │ │ ├── preprocess_udfs.py │ │ └── train_encdec.py │ ├── models/ │ │ ├── __init__.py │ │ ├── cbndec.py │ │ ├── coordsenc.py │ │ └── dgcnn.py │ ├── trainers/ │ │ ├── __init__.py │ │ ├── encdec.py │ │ └── test.py │ └── utils.py ├── CLIP/ │ ├── .gitignore │ ├── LICENSE │ ├── MANIFEST.in │ ├── README.md │ ├── __init__.py │ ├── clip/ │ │ ├── __init__.py │ │ ├── clip.py │ │ ├── model.py │ │ └── simple_tokenizer.py │ ├── clip.py │ ├── data/ │ │ ├── country211.md │ │ ├── prompts.md │ │ ├── rendered-sst2.md │ │ └── yfcc100m.md │ ├── hubconf.py │ ├── model-card.md │ ├── model.py │ ├── requirements.txt │ ├── setup.py │ ├── simple_tokenizer.py │ └── tests/ │ └── test_consistency.py ├── README.md ├── data_loaders/ │ └── dataset.py ├── diffusion/ │ ├── fp16_util.py │ ├── gaussian_diffusion.py │ ├── logger.py │ ├── losses.py │ ├── nn.py │ ├── resample.py │ └── respace.py ├── environment.yaml ├── meshudf/ │ ├── _marching_cubes_lewiner.py │ ├── _marching_cubes_lewiner_cy.pyx │ ├── _marching_cubes_lewiner_luts.py │ ├── meshudf.py │ ├── setup.py │ └── setup.sh ├── models/ │ ├── cfg_sampler.py │ ├── mdm.py │ ├── models.py │ └── openaimodel.py ├── modules/ │ └── attention.py ├── sample/ │ ├── generate_cat.py │ ├── generate_image.py │ ├── generate_sketch.py │ ├── generate_text.py │ └── generate_uncond.py ├── train_diffcloth.py ├── training_loop_single.py └── utils/ ├── PYTORCH3D_LICENSE ├── __init__.py ├── comm.py ├── dist_util.py ├── fixseed.py ├── ldm_utils.py ├── logger.py ├── misc.py ├── miscellaneous.py ├── model_util.py ├── parser_util.py └── utils.py