├── .gitignore ├── LICENSE ├── README.md ├── cam_utils.py ├── clip_sim.py ├── configs ├── image_sai.yaml ├── imagedream.yaml └── text_mv.yaml ├── convert.py ├── core ├── __init__.py ├── attention.py ├── gs.py ├── models.py ├── options.py ├── provider_objaverse.py ├── unet.py └── utils.py ├── grid_put.py ├── gs_postprocess.py ├── gs_renderer.py ├── guidance ├── imagedream_utils.py ├── mvdream_utils.py └── zero123_utils.py ├── loss_utils.py ├── lpipsPyTorch ├── __init__.py └── modules │ ├── lpips.py │ ├── networks.py │ └── utils.py ├── main.py ├── main2.py ├── mesh.py ├── mesh_renderer.py ├── mesh_utils.py ├── process.py ├── requirements.txt ├── scheduler_config.json ├── scripts ├── cal_sim.py ├── convert_obj_to_video.py ├── run_cal_sim.sh ├── run_imagedream.sh └── run_sai.sh ├── sh_utils.py ├── simple-knn ├── ext.cpp ├── setup.py ├── simple_knn.cu ├── simple_knn.h ├── simple_knn │ └── .gitkeep ├── spatial.cu └── spatial.h ├── test_data ├── 00_zero123_lysol_rgba.png ├── 01_wild_hydrant_rgba.png ├── 02_zero123_spyro_rgba.png ├── 03_wild2_pineapple_bottle_rgba.png ├── 04_unsplash_broccoli_rgba.png ├── 05_objaverse_backpack_rgba.png ├── 06_unsplash_chocolatecake_rgba.png ├── 07_unsplash_stool2_rgba.png ├── 08_dalle_icecream_rgba.png ├── 09_unsplash_bigmac_rgba.png ├── 10_dalle3_blueberryicecream2_rgba.png ├── 11_GSO_Crosley_Alarm_Clock_Vintage_Metal_rgba.png ├── 12_realfusion_cactus_1_rgba.png ├── 13_realfusion_cherry_1_rgba.png ├── 14_dalle_cowbear_rgba.png ├── 15_dalle3_gramophone1_rgba.png ├── 16_dalle3_mushroom2_rgba.png ├── 17_dalle3_rockingchair1_rgba.png ├── 18_unsplash_mario_rgba.png ├── 19_dalle3_stump1_rgba.png ├── 20_objaverse_stool_rgba.png ├── 21_objaverse_barrel_rgba.png ├── 22_unsplash_boxtoy_rgba.png ├── 23_objaverse_tank_rgba.png ├── 24_wild2_yellow_duck_rgba.png ├── 25_unsplash_teapot_rgba.png ├── 26_unsplash_strawberrycake_rgba.png ├── 27_objaverse_robocat_rgba.png ├── 28_wild_goose_chef_rgba.png ├── 29_wild_peroxide_rgba.png ├── alarm_rgba.png ├── anya_rgba.png ├── armor_rgba.png ├── astronaut_rgba.png ├── backpack_rgba.png ├── box_rgba.png ├── bread_rgba.png ├── bucket_rgba.png ├── busket_rgba.png ├── cargo_rgba.png ├── cat_rgba.png ├── catstatue_rgba.png ├── chili_rgba.png ├── crab_rgba.png ├── crystal_rgba.png ├── csm_luigi_rgba.png ├── deer_rgba.png ├── drum2_rgba.png ├── drum_rgba.png ├── elephant_rgba.png ├── flower2_rgba.png ├── flower_rgba.png ├── forest_rgba.png ├── frog_sweater_rgba.png ├── ghost_rgba.png ├── giraffe_rgba.png ├── grandfather_rgba.png ├── ground_rgba.png ├── halloween_rgba.png ├── hat_rgba.png ├── head_rgba.png ├── house_rgba.png ├── kettle_rgba.png ├── kunkun_rgba.png ├── lantern_rgba.png ├── lotus_seed_rgba.png ├── lunch_bag_rgba.png ├── milk_rgba.png ├── monkey_rgba.png ├── oil_rgba.png ├── poro_rgba.png ├── rabbit_chinese_rgba.png ├── school_bus1_rgba.png ├── school_bus2_rgba.png ├── shed_rgba.png ├── shoe_rgba.png ├── sofa2_rgba.png ├── sofa_rgba.png ├── steak_rgba.png ├── teapot2_rgba.png ├── teapot_rgba.png ├── test_rgba.png ├── toaster_rgba.png ├── turtle_rgba.png ├── vase_rgba.png ├── wisky_rgba.png └── zelda_rgba.png └── zero123.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/README.md -------------------------------------------------------------------------------- /cam_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/cam_utils.py -------------------------------------------------------------------------------- /clip_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/clip_sim.py -------------------------------------------------------------------------------- /configs/image_sai.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/configs/image_sai.yaml -------------------------------------------------------------------------------- /configs/imagedream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/configs/imagedream.yaml -------------------------------------------------------------------------------- /configs/text_mv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/configs/text_mv.yaml -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/convert.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/core/attention.py -------------------------------------------------------------------------------- /core/gs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/core/gs.py -------------------------------------------------------------------------------- /core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/core/models.py -------------------------------------------------------------------------------- /core/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/core/options.py -------------------------------------------------------------------------------- /core/provider_objaverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/core/provider_objaverse.py -------------------------------------------------------------------------------- /core/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/core/unet.py -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/core/utils.py -------------------------------------------------------------------------------- /grid_put.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/grid_put.py -------------------------------------------------------------------------------- /gs_postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/gs_postprocess.py -------------------------------------------------------------------------------- /gs_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/gs_renderer.py -------------------------------------------------------------------------------- /guidance/imagedream_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/guidance/imagedream_utils.py -------------------------------------------------------------------------------- /guidance/mvdream_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/guidance/mvdream_utils.py -------------------------------------------------------------------------------- /guidance/zero123_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/guidance/zero123_utils.py -------------------------------------------------------------------------------- /loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/loss_utils.py -------------------------------------------------------------------------------- /lpipsPyTorch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/lpipsPyTorch/__init__.py -------------------------------------------------------------------------------- /lpipsPyTorch/modules/lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/lpipsPyTorch/modules/lpips.py -------------------------------------------------------------------------------- /lpipsPyTorch/modules/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/lpipsPyTorch/modules/networks.py -------------------------------------------------------------------------------- /lpipsPyTorch/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/lpipsPyTorch/modules/utils.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/main.py -------------------------------------------------------------------------------- /main2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/main2.py -------------------------------------------------------------------------------- /mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/mesh.py -------------------------------------------------------------------------------- /mesh_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/mesh_renderer.py -------------------------------------------------------------------------------- /mesh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/mesh_utils.py -------------------------------------------------------------------------------- /process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/process.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/requirements.txt -------------------------------------------------------------------------------- /scheduler_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/scheduler_config.json -------------------------------------------------------------------------------- /scripts/cal_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/scripts/cal_sim.py -------------------------------------------------------------------------------- /scripts/convert_obj_to_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/scripts/convert_obj_to_video.py -------------------------------------------------------------------------------- /scripts/run_cal_sim.sh: -------------------------------------------------------------------------------- 1 | export CUDA_VISIBLE_DEVICES=0 2 | 3 | PYTHONPATH='.' python scripts/cal_sim.py -------------------------------------------------------------------------------- /scripts/run_imagedream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/scripts/run_imagedream.sh -------------------------------------------------------------------------------- /scripts/run_sai.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/scripts/run_sai.sh -------------------------------------------------------------------------------- /sh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/sh_utils.py -------------------------------------------------------------------------------- /simple-knn/ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/simple-knn/ext.cpp -------------------------------------------------------------------------------- /simple-knn/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/simple-knn/setup.py -------------------------------------------------------------------------------- /simple-knn/simple_knn.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/simple-knn/simple_knn.cu -------------------------------------------------------------------------------- /simple-knn/simple_knn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/simple-knn/simple_knn.h -------------------------------------------------------------------------------- /simple-knn/simple_knn/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple-knn/spatial.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/simple-knn/spatial.cu -------------------------------------------------------------------------------- /simple-knn/spatial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/simple-knn/spatial.h -------------------------------------------------------------------------------- /test_data/00_zero123_lysol_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/00_zero123_lysol_rgba.png -------------------------------------------------------------------------------- /test_data/01_wild_hydrant_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/01_wild_hydrant_rgba.png -------------------------------------------------------------------------------- /test_data/02_zero123_spyro_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/02_zero123_spyro_rgba.png -------------------------------------------------------------------------------- /test_data/03_wild2_pineapple_bottle_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/03_wild2_pineapple_bottle_rgba.png -------------------------------------------------------------------------------- /test_data/04_unsplash_broccoli_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/04_unsplash_broccoli_rgba.png -------------------------------------------------------------------------------- /test_data/05_objaverse_backpack_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/05_objaverse_backpack_rgba.png -------------------------------------------------------------------------------- /test_data/06_unsplash_chocolatecake_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/06_unsplash_chocolatecake_rgba.png -------------------------------------------------------------------------------- /test_data/07_unsplash_stool2_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/07_unsplash_stool2_rgba.png -------------------------------------------------------------------------------- /test_data/08_dalle_icecream_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/08_dalle_icecream_rgba.png -------------------------------------------------------------------------------- /test_data/09_unsplash_bigmac_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/09_unsplash_bigmac_rgba.png -------------------------------------------------------------------------------- /test_data/10_dalle3_blueberryicecream2_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/10_dalle3_blueberryicecream2_rgba.png -------------------------------------------------------------------------------- /test_data/11_GSO_Crosley_Alarm_Clock_Vintage_Metal_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/11_GSO_Crosley_Alarm_Clock_Vintage_Metal_rgba.png -------------------------------------------------------------------------------- /test_data/12_realfusion_cactus_1_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/12_realfusion_cactus_1_rgba.png -------------------------------------------------------------------------------- /test_data/13_realfusion_cherry_1_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/13_realfusion_cherry_1_rgba.png -------------------------------------------------------------------------------- /test_data/14_dalle_cowbear_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/14_dalle_cowbear_rgba.png -------------------------------------------------------------------------------- /test_data/15_dalle3_gramophone1_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/15_dalle3_gramophone1_rgba.png -------------------------------------------------------------------------------- /test_data/16_dalle3_mushroom2_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/16_dalle3_mushroom2_rgba.png -------------------------------------------------------------------------------- /test_data/17_dalle3_rockingchair1_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/17_dalle3_rockingchair1_rgba.png -------------------------------------------------------------------------------- /test_data/18_unsplash_mario_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/18_unsplash_mario_rgba.png -------------------------------------------------------------------------------- /test_data/19_dalle3_stump1_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/19_dalle3_stump1_rgba.png -------------------------------------------------------------------------------- /test_data/20_objaverse_stool_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/20_objaverse_stool_rgba.png -------------------------------------------------------------------------------- /test_data/21_objaverse_barrel_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/21_objaverse_barrel_rgba.png -------------------------------------------------------------------------------- /test_data/22_unsplash_boxtoy_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/22_unsplash_boxtoy_rgba.png -------------------------------------------------------------------------------- /test_data/23_objaverse_tank_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/23_objaverse_tank_rgba.png -------------------------------------------------------------------------------- /test_data/24_wild2_yellow_duck_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/24_wild2_yellow_duck_rgba.png -------------------------------------------------------------------------------- /test_data/25_unsplash_teapot_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/25_unsplash_teapot_rgba.png -------------------------------------------------------------------------------- /test_data/26_unsplash_strawberrycake_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/26_unsplash_strawberrycake_rgba.png -------------------------------------------------------------------------------- /test_data/27_objaverse_robocat_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/27_objaverse_robocat_rgba.png -------------------------------------------------------------------------------- /test_data/28_wild_goose_chef_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/28_wild_goose_chef_rgba.png -------------------------------------------------------------------------------- /test_data/29_wild_peroxide_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/29_wild_peroxide_rgba.png -------------------------------------------------------------------------------- /test_data/alarm_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/alarm_rgba.png -------------------------------------------------------------------------------- /test_data/anya_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/anya_rgba.png -------------------------------------------------------------------------------- /test_data/armor_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/armor_rgba.png -------------------------------------------------------------------------------- /test_data/astronaut_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/astronaut_rgba.png -------------------------------------------------------------------------------- /test_data/backpack_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/backpack_rgba.png -------------------------------------------------------------------------------- /test_data/box_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/box_rgba.png -------------------------------------------------------------------------------- /test_data/bread_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/bread_rgba.png -------------------------------------------------------------------------------- /test_data/bucket_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/bucket_rgba.png -------------------------------------------------------------------------------- /test_data/busket_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/busket_rgba.png -------------------------------------------------------------------------------- /test_data/cargo_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/cargo_rgba.png -------------------------------------------------------------------------------- /test_data/cat_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/cat_rgba.png -------------------------------------------------------------------------------- /test_data/catstatue_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/catstatue_rgba.png -------------------------------------------------------------------------------- /test_data/chili_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/chili_rgba.png -------------------------------------------------------------------------------- /test_data/crab_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/crab_rgba.png -------------------------------------------------------------------------------- /test_data/crystal_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/crystal_rgba.png -------------------------------------------------------------------------------- /test_data/csm_luigi_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/csm_luigi_rgba.png -------------------------------------------------------------------------------- /test_data/deer_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/deer_rgba.png -------------------------------------------------------------------------------- /test_data/drum2_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/drum2_rgba.png -------------------------------------------------------------------------------- /test_data/drum_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/drum_rgba.png -------------------------------------------------------------------------------- /test_data/elephant_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/elephant_rgba.png -------------------------------------------------------------------------------- /test_data/flower2_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/flower2_rgba.png -------------------------------------------------------------------------------- /test_data/flower_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/flower_rgba.png -------------------------------------------------------------------------------- /test_data/forest_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/forest_rgba.png -------------------------------------------------------------------------------- /test_data/frog_sweater_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/frog_sweater_rgba.png -------------------------------------------------------------------------------- /test_data/ghost_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/ghost_rgba.png -------------------------------------------------------------------------------- /test_data/giraffe_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/giraffe_rgba.png -------------------------------------------------------------------------------- /test_data/grandfather_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/grandfather_rgba.png -------------------------------------------------------------------------------- /test_data/ground_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/ground_rgba.png -------------------------------------------------------------------------------- /test_data/halloween_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/halloween_rgba.png -------------------------------------------------------------------------------- /test_data/hat_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/hat_rgba.png -------------------------------------------------------------------------------- /test_data/head_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/head_rgba.png -------------------------------------------------------------------------------- /test_data/house_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/house_rgba.png -------------------------------------------------------------------------------- /test_data/kettle_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/kettle_rgba.png -------------------------------------------------------------------------------- /test_data/kunkun_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/kunkun_rgba.png -------------------------------------------------------------------------------- /test_data/lantern_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/lantern_rgba.png -------------------------------------------------------------------------------- /test_data/lotus_seed_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/lotus_seed_rgba.png -------------------------------------------------------------------------------- /test_data/lunch_bag_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/lunch_bag_rgba.png -------------------------------------------------------------------------------- /test_data/milk_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/milk_rgba.png -------------------------------------------------------------------------------- /test_data/monkey_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/monkey_rgba.png -------------------------------------------------------------------------------- /test_data/oil_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/oil_rgba.png -------------------------------------------------------------------------------- /test_data/poro_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/poro_rgba.png -------------------------------------------------------------------------------- /test_data/rabbit_chinese_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/rabbit_chinese_rgba.png -------------------------------------------------------------------------------- /test_data/school_bus1_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/school_bus1_rgba.png -------------------------------------------------------------------------------- /test_data/school_bus2_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/school_bus2_rgba.png -------------------------------------------------------------------------------- /test_data/shed_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/shed_rgba.png -------------------------------------------------------------------------------- /test_data/shoe_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/shoe_rgba.png -------------------------------------------------------------------------------- /test_data/sofa2_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/sofa2_rgba.png -------------------------------------------------------------------------------- /test_data/sofa_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/sofa_rgba.png -------------------------------------------------------------------------------- /test_data/steak_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/steak_rgba.png -------------------------------------------------------------------------------- /test_data/teapot2_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/teapot2_rgba.png -------------------------------------------------------------------------------- /test_data/teapot_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/teapot_rgba.png -------------------------------------------------------------------------------- /test_data/test_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/test_rgba.png -------------------------------------------------------------------------------- /test_data/toaster_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/toaster_rgba.png -------------------------------------------------------------------------------- /test_data/turtle_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/turtle_rgba.png -------------------------------------------------------------------------------- /test_data/vase_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/vase_rgba.png -------------------------------------------------------------------------------- /test_data/wisky_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/wisky_rgba.png -------------------------------------------------------------------------------- /test_data/zelda_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/test_data/zelda_rgba.png -------------------------------------------------------------------------------- /zero123.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ML-GSAI/MicroDreamer/HEAD/zero123.py --------------------------------------------------------------------------------