Spaces:
Build error
Build error
created requirements.txt
Browse files- requirements.txt +46 -0
requirements.txt
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
streamlit
|
| 2 |
+
diffusers
|
| 3 |
+
transformers
|
| 4 |
+
ipywidgets
|
| 5 |
+
Pillow
|
| 6 |
+
|
| 7 |
+
# Basic PyTorch + ecosystem
|
| 8 |
+
torch
|
| 9 |
+
torchvision
|
| 10 |
+
accelerate
|
| 11 |
+
|
| 12 |
+
# Pinned version for SyncDreamer
|
| 13 |
+
pytorch_lightning==1.9.0
|
| 14 |
+
|
| 15 |
+
# Stable Diffusion / Diffusers stack
|
| 16 |
+
# (You can remove diffusers[training] if you only need inference)
|
| 17 |
+
diffusers[training]
|
| 18 |
+
transformers
|
| 19 |
+
|
| 20 |
+
# Additional requirements
|
| 21 |
+
Pillow==10.0.0
|
| 22 |
+
opencv-python
|
| 23 |
+
taming-transformers-rom1504
|
| 24 |
+
tqdm
|
| 25 |
+
numpy
|
| 26 |
+
kornia
|
| 27 |
+
webdataset
|
| 28 |
+
omegaconf
|
| 29 |
+
einops
|
| 30 |
+
scikit-image
|
| 31 |
+
pymcubes
|
| 32 |
+
carvekit-colab
|
| 33 |
+
open3d
|
| 34 |
+
trimesh
|
| 35 |
+
easydict
|
| 36 |
+
nerfacc
|
| 37 |
+
imageio-ffmpeg==0.4.7
|
| 38 |
+
|
| 39 |
+
# Install from GitHub (needed by SyncDreamer & others)
|
| 40 |
+
git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch
|
| 41 |
+
git+https://github.com/openai/CLIP.git
|
| 42 |
+
|
| 43 |
+
# (Optional) Install the most recent diffusers from GitHub
|
| 44 |
+
# If you truly need the absolutely latest code:
|
| 45 |
+
git+https://github.com/huggingface/diffusers.git
|
| 46 |
+
|