Spaces:
Configuration error
Configuration error
update
Browse files- README.md +0 -1
- requirements.txt +6 -13
- viewcrafter.py +1 -1
README.md
CHANGED
|
@@ -3,7 +3,6 @@ title: ViewCrafter
|
|
| 3 |
emoji: 🐨
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: purple
|
| 6 |
-
python_version: 3.8.17
|
| 7 |
sdk: gradio
|
| 8 |
sdk_version: 4.36.0
|
| 9 |
app_file: app.py
|
|
|
|
| 3 |
emoji: 🐨
|
| 4 |
colorFrom: yellow
|
| 5 |
colorTo: purple
|
|
|
|
| 6 |
sdk: gradio
|
| 7 |
sdk_version: 4.36.0
|
| 8 |
app_file: app.py
|
requirements.txt
CHANGED
|
@@ -1,4 +1,3 @@
|
|
| 1 |
-
av==10.0.0
|
| 2 |
decord==0.6.0
|
| 3 |
einops==0.6.1
|
| 4 |
imageio==2.27.0
|
|
@@ -14,25 +13,19 @@ opencv-python==4.7.0.72
|
|
| 14 |
Pillow==9.4.0
|
| 15 |
pip==23.0.1
|
| 16 |
pyglet==1.5.0
|
| 17 |
-
pytorch-lightning==1.
|
| 18 |
PyYAML==6.0
|
| 19 |
roma==1.5.0
|
|
|
|
| 20 |
scikit-image==0.20.0
|
| 21 |
scikit-learn==1.2.2
|
| 22 |
scipy==1.9.1
|
| 23 |
-
tensorboard==2.12.2
|
| 24 |
timm==0.6.13
|
| 25 |
tqdm==4.65.0
|
| 26 |
-
transformers==4.
|
| 27 |
trimesh==4.4.3
|
| 28 |
-
xformers==0.0.19
|
| 29 |
-
gradio==4.42.0
|
| 30 |
omegaconf==2.3.0
|
| 31 |
triton
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
httpx==0.27.0
|
| 36 |
-
Pygments==2.18.0
|
| 37 |
-
huggingface_hub
|
| 38 |
-
spaces
|
|
|
|
|
|
|
| 1 |
decord==0.6.0
|
| 2 |
einops==0.6.1
|
| 3 |
imageio==2.27.0
|
|
|
|
| 13 |
Pillow==9.4.0
|
| 14 |
pip==23.0.1
|
| 15 |
pyglet==1.5.0
|
| 16 |
+
pytorch-lightning==1.8.3
|
| 17 |
PyYAML==6.0
|
| 18 |
roma==1.5.0
|
| 19 |
+
setuptools==65.6.3
|
| 20 |
scikit-image==0.20.0
|
| 21 |
scikit-learn==1.2.2
|
| 22 |
scipy==1.9.1
|
|
|
|
| 23 |
timm==0.6.13
|
| 24 |
tqdm==4.65.0
|
| 25 |
+
transformers==4.25.1
|
| 26 |
trimesh==4.4.3
|
|
|
|
|
|
|
| 27 |
omegaconf==2.3.0
|
| 28 |
triton
|
| 29 |
+
av
|
| 30 |
+
xformers
|
| 31 |
+
gradio
|
|
|
|
|
|
|
|
|
|
|
|
viewcrafter.py
CHANGED
|
@@ -32,7 +32,7 @@ class ViewCrafter:
|
|
| 32 |
self.opts = opts
|
| 33 |
self.device = opts.device
|
| 34 |
self.setup_dust3r()
|
| 35 |
-
self.setup_diffusion()
|
| 36 |
# initialize ref images, pcd
|
| 37 |
if not gradio:
|
| 38 |
self.images, self.img_ori = self.load_initial_images(image_dir=self.opts.image_dir)
|
|
|
|
| 32 |
self.opts = opts
|
| 33 |
self.device = opts.device
|
| 34 |
self.setup_dust3r()
|
| 35 |
+
# self.setup_diffusion()
|
| 36 |
# initialize ref images, pcd
|
| 37 |
if not gradio:
|
| 38 |
self.images, self.img_ori = self.load_initial_images(image_dir=self.opts.image_dir)
|