Spaces:
Running
on
Zero
Running
on
Zero
update
Browse files- __pycache__/viewcrafter.cpython-39.pyc +0 -0
- app.py +2 -2
- configs/__pycache__/infer_config.cpython-39.pyc +0 -0
- extern/dust3r/croco/models/__pycache__/blocks.cpython-39.pyc +0 -0
- extern/dust3r/croco/models/__pycache__/croco.cpython-39.pyc +0 -0
- extern/dust3r/croco/models/__pycache__/dpt_block.cpython-39.pyc +0 -0
- extern/dust3r/croco/models/__pycache__/masking.cpython-39.pyc +0 -0
- extern/dust3r/croco/models/__pycache__/pos_embed.cpython-39.pyc +0 -0
- extern/dust3r/croco/models/curope/__pycache__/__init__.cpython-39.pyc +0 -0
- extern/dust3r/croco/models/curope/__pycache__/curope2d.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/__pycache__/__init__.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/__pycache__/image_pairs.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/__pycache__/inference.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/__pycache__/model.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/__pycache__/optim_factory.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/__pycache__/patch_embed.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/__pycache__/post_process.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/__pycache__/viz.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/cloud_opt/__pycache__/__init__.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/cloud_opt/__pycache__/base_opt.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/cloud_opt/__pycache__/commons.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/cloud_opt/__pycache__/init_im_poses.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/cloud_opt/__pycache__/optimizer.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/cloud_opt/__pycache__/pair_viewer.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/heads/__pycache__/__init__.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/heads/__pycache__/dpt_head.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/heads/__pycache__/linear_head.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/heads/__pycache__/postprocess.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/utils/__pycache__/__init__.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/utils/__pycache__/device.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/utils/__pycache__/geometry.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/utils/__pycache__/image.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/utils/__pycache__/misc.cpython-39.pyc +0 -0
- extern/dust3r/dust3r/utils/__pycache__/path_to_croco.cpython-39.pyc +0 -0
- lvdm/__pycache__/common.cpython-39.pyc +0 -0
- lvdm/models/__pycache__/utils_diffusion.cpython-39.pyc +0 -0
- lvdm/models/samplers/__pycache__/ddim.cpython-39.pyc +0 -0
- lvdm/models/samplers/__pycache__/ddim_multiplecond.cpython-39.pyc +0 -0
- utils/__pycache__/diffusion_utils.cpython-39.pyc +0 -0
- utils/__pycache__/pvd_utils.cpython-39.pyc +0 -0
__pycache__/viewcrafter.cpython-39.pyc
ADDED
Binary file (14.1 kB). View file
|
|
app.py
CHANGED
@@ -17,7 +17,7 @@ i2v_examples = [
|
|
17 |
|
18 |
max_seed = 2 ** 31
|
19 |
|
20 |
-
os.system('conda install https://anaconda.org/pytorch3d/pytorch3d/0.7.
|
21 |
|
22 |
|
23 |
|
@@ -88,7 +88,7 @@ def viewcrafter_demo(opts):
|
|
88 |
if __name__ == "__main__":
|
89 |
parser = get_parser() # infer_config.py
|
90 |
opts = parser.parse_args() # default device: 'cuda:0'
|
91 |
-
opts.save_dir = './
|
92 |
os.makedirs(opts.save_dir,exist_ok=True)
|
93 |
test_tensor = torch.Tensor([0]).cuda()
|
94 |
opts.device = str(test_tensor.device)
|
|
|
17 |
|
18 |
max_seed = 2 ** 31
|
19 |
|
20 |
+
os.system('conda install https://anaconda.org/pytorch3d/pytorch3d/0.7.7/download/linux-64/pytorch3d-0.7.7-py39_cu117_pyt200.tar.bz2')
|
21 |
|
22 |
|
23 |
|
|
|
88 |
if __name__ == "__main__":
|
89 |
parser = get_parser() # infer_config.py
|
90 |
opts = parser.parse_args() # default device: 'cuda:0'
|
91 |
+
opts.save_dir = './'
|
92 |
os.makedirs(opts.save_dir,exist_ok=True)
|
93 |
test_tensor = torch.Tensor([0]).cuda()
|
94 |
opts.device = str(test_tensor.device)
|
configs/__pycache__/infer_config.cpython-39.pyc
CHANGED
Binary files a/configs/__pycache__/infer_config.cpython-39.pyc and b/configs/__pycache__/infer_config.cpython-39.pyc differ
|
|
extern/dust3r/croco/models/__pycache__/blocks.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/croco/models/__pycache__/blocks.cpython-39.pyc and b/extern/dust3r/croco/models/__pycache__/blocks.cpython-39.pyc differ
|
|
extern/dust3r/croco/models/__pycache__/croco.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/croco/models/__pycache__/croco.cpython-39.pyc and b/extern/dust3r/croco/models/__pycache__/croco.cpython-39.pyc differ
|
|
extern/dust3r/croco/models/__pycache__/dpt_block.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/croco/models/__pycache__/dpt_block.cpython-39.pyc and b/extern/dust3r/croco/models/__pycache__/dpt_block.cpython-39.pyc differ
|
|
extern/dust3r/croco/models/__pycache__/masking.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/croco/models/__pycache__/masking.cpython-39.pyc and b/extern/dust3r/croco/models/__pycache__/masking.cpython-39.pyc differ
|
|
extern/dust3r/croco/models/__pycache__/pos_embed.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/croco/models/__pycache__/pos_embed.cpython-39.pyc and b/extern/dust3r/croco/models/__pycache__/pos_embed.cpython-39.pyc differ
|
|
extern/dust3r/croco/models/curope/__pycache__/__init__.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/croco/models/curope/__pycache__/__init__.cpython-39.pyc and b/extern/dust3r/croco/models/curope/__pycache__/__init__.cpython-39.pyc differ
|
|
extern/dust3r/croco/models/curope/__pycache__/curope2d.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/croco/models/curope/__pycache__/curope2d.cpython-39.pyc and b/extern/dust3r/croco/models/curope/__pycache__/curope2d.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/__pycache__/__init__.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/__pycache__/__init__.cpython-39.pyc and b/extern/dust3r/dust3r/__pycache__/__init__.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/__pycache__/image_pairs.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/__pycache__/image_pairs.cpython-39.pyc and b/extern/dust3r/dust3r/__pycache__/image_pairs.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/__pycache__/inference.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/__pycache__/inference.cpython-39.pyc and b/extern/dust3r/dust3r/__pycache__/inference.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/__pycache__/model.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/__pycache__/model.cpython-39.pyc and b/extern/dust3r/dust3r/__pycache__/model.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/__pycache__/optim_factory.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/__pycache__/optim_factory.cpython-39.pyc and b/extern/dust3r/dust3r/__pycache__/optim_factory.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/__pycache__/patch_embed.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/__pycache__/patch_embed.cpython-39.pyc and b/extern/dust3r/dust3r/__pycache__/patch_embed.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/__pycache__/post_process.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/__pycache__/post_process.cpython-39.pyc and b/extern/dust3r/dust3r/__pycache__/post_process.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/__pycache__/viz.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/__pycache__/viz.cpython-39.pyc and b/extern/dust3r/dust3r/__pycache__/viz.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/cloud_opt/__pycache__/__init__.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/cloud_opt/__pycache__/__init__.cpython-39.pyc and b/extern/dust3r/dust3r/cloud_opt/__pycache__/__init__.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/cloud_opt/__pycache__/base_opt.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/cloud_opt/__pycache__/base_opt.cpython-39.pyc and b/extern/dust3r/dust3r/cloud_opt/__pycache__/base_opt.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/cloud_opt/__pycache__/commons.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/cloud_opt/__pycache__/commons.cpython-39.pyc and b/extern/dust3r/dust3r/cloud_opt/__pycache__/commons.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/cloud_opt/__pycache__/init_im_poses.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/cloud_opt/__pycache__/init_im_poses.cpython-39.pyc and b/extern/dust3r/dust3r/cloud_opt/__pycache__/init_im_poses.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/cloud_opt/__pycache__/optimizer.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/cloud_opt/__pycache__/optimizer.cpython-39.pyc and b/extern/dust3r/dust3r/cloud_opt/__pycache__/optimizer.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/cloud_opt/__pycache__/pair_viewer.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/cloud_opt/__pycache__/pair_viewer.cpython-39.pyc and b/extern/dust3r/dust3r/cloud_opt/__pycache__/pair_viewer.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/heads/__pycache__/__init__.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/heads/__pycache__/__init__.cpython-39.pyc and b/extern/dust3r/dust3r/heads/__pycache__/__init__.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/heads/__pycache__/dpt_head.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/heads/__pycache__/dpt_head.cpython-39.pyc and b/extern/dust3r/dust3r/heads/__pycache__/dpt_head.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/heads/__pycache__/linear_head.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/heads/__pycache__/linear_head.cpython-39.pyc and b/extern/dust3r/dust3r/heads/__pycache__/linear_head.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/heads/__pycache__/postprocess.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/heads/__pycache__/postprocess.cpython-39.pyc and b/extern/dust3r/dust3r/heads/__pycache__/postprocess.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/utils/__pycache__/__init__.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/utils/__pycache__/__init__.cpython-39.pyc and b/extern/dust3r/dust3r/utils/__pycache__/__init__.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/utils/__pycache__/device.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/utils/__pycache__/device.cpython-39.pyc and b/extern/dust3r/dust3r/utils/__pycache__/device.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/utils/__pycache__/geometry.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/utils/__pycache__/geometry.cpython-39.pyc and b/extern/dust3r/dust3r/utils/__pycache__/geometry.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/utils/__pycache__/image.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/utils/__pycache__/image.cpython-39.pyc and b/extern/dust3r/dust3r/utils/__pycache__/image.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/utils/__pycache__/misc.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/utils/__pycache__/misc.cpython-39.pyc and b/extern/dust3r/dust3r/utils/__pycache__/misc.cpython-39.pyc differ
|
|
extern/dust3r/dust3r/utils/__pycache__/path_to_croco.cpython-39.pyc
CHANGED
Binary files a/extern/dust3r/dust3r/utils/__pycache__/path_to_croco.cpython-39.pyc and b/extern/dust3r/dust3r/utils/__pycache__/path_to_croco.cpython-39.pyc differ
|
|
lvdm/__pycache__/common.cpython-39.pyc
CHANGED
Binary files a/lvdm/__pycache__/common.cpython-39.pyc and b/lvdm/__pycache__/common.cpython-39.pyc differ
|
|
lvdm/models/__pycache__/utils_diffusion.cpython-39.pyc
CHANGED
Binary files a/lvdm/models/__pycache__/utils_diffusion.cpython-39.pyc and b/lvdm/models/__pycache__/utils_diffusion.cpython-39.pyc differ
|
|
lvdm/models/samplers/__pycache__/ddim.cpython-39.pyc
CHANGED
Binary files a/lvdm/models/samplers/__pycache__/ddim.cpython-39.pyc and b/lvdm/models/samplers/__pycache__/ddim.cpython-39.pyc differ
|
|
lvdm/models/samplers/__pycache__/ddim_multiplecond.cpython-39.pyc
CHANGED
Binary files a/lvdm/models/samplers/__pycache__/ddim_multiplecond.cpython-39.pyc and b/lvdm/models/samplers/__pycache__/ddim_multiplecond.cpython-39.pyc differ
|
|
utils/__pycache__/diffusion_utils.cpython-39.pyc
CHANGED
Binary files a/utils/__pycache__/diffusion_utils.cpython-39.pyc and b/utils/__pycache__/diffusion_utils.cpython-39.pyc differ
|
|
utils/__pycache__/pvd_utils.cpython-39.pyc
CHANGED
Binary files a/utils/__pycache__/pvd_utils.cpython-39.pyc and b/utils/__pycache__/pvd_utils.cpython-39.pyc differ
|
|