bennyguo commited on
Commit
009cfd7
·
1 Parent(s): 1843d44

add dependencies

Browse files
Files changed (3) hide show
  1. app.py +10 -0
  2. pre-requirements.txt +4 -0
  3. requirements.txt +41 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def greet(name):
5
+ return "Hello " + name + "!!"
6
+
7
+
8
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
+ iface.launch()
10
+
pre-requirements.txt ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ torch
2
+ torchvision
3
+ ninja
4
+
requirements.txt ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ lightning==2.0.0
2
+ omegaconf==2.3.0
3
+ jaxtyping
4
+ typeguard
5
+ git+https://github.com/KAIR-BAIR/[email protected]
6
+ git+https://github.com/NVlabs/tiny-cuda-nn/#subdirectory=bindings/torch
7
+ diffusers
8
+ transformers
9
+ accelerate
10
+ opencv-python
11
+ tensorboard
12
+ matplotlib
13
+ imageio>=2.28.0
14
+ imageio[ffmpeg]
15
+ git+https://github.com/NVlabs/nvdiffrast.git
16
+ libigl
17
+ xatlas
18
+ trimesh[easy]
19
+ networkx
20
+ pysdf
21
+ PyMCubes
22
+ wandb
23
+ gradio
24
+ git+https://github.com/ashawkey/envlight.git
25
+
26
+ # deepfloyd
27
+ xformers
28
+ bitsandbytes
29
+ sentencepiece
30
+ safetensors
31
+ huggingface_hub
32
+
33
+ # for zero123
34
+ einops
35
+ kornia
36
+ taming-transformers-rom1504
37
+ git+https://github.com/openai/CLIP.git
38
+
39
+ #controlnet
40
+ controlnet_aux
41
+