├── .gitignore ├── README.md ├── mvdream ├── attention_processor.py ├── camera_proj.py ├── pipeline_mvdream.py ├── unet.py └── utils.py └── test.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .vscode/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizhiqi49/mvdream-diffusers/HEAD/README.md -------------------------------------------------------------------------------- /mvdream/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizhiqi49/mvdream-diffusers/HEAD/mvdream/attention_processor.py -------------------------------------------------------------------------------- /mvdream/camera_proj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizhiqi49/mvdream-diffusers/HEAD/mvdream/camera_proj.py -------------------------------------------------------------------------------- /mvdream/pipeline_mvdream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizhiqi49/mvdream-diffusers/HEAD/mvdream/pipeline_mvdream.py -------------------------------------------------------------------------------- /mvdream/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizhiqi49/mvdream-diffusers/HEAD/mvdream/unet.py -------------------------------------------------------------------------------- /mvdream/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizhiqi49/mvdream-diffusers/HEAD/mvdream/utils.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lizhiqi49/mvdream-diffusers/HEAD/test.py --------------------------------------------------------------------------------