RohitGandikota commited on
Commit
cb9665a
β€’
1 Parent(s): 440e2aa
Files changed (2) hide show
  1. app.py +7 -0
  2. requirements.txt +22 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
5
+
6
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
+ iface.launch()
requirements.txt ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ bitsandbytes==0.41.1
2
+ dadaptation==3.1
3
+ diffusers==0.20.2
4
+ ipython==8.7.0
5
+ lion_pytorch==0.1.2
6
+ lpips==0.1.4
7
+ matplotlib==3.6.2
8
+ numpy==1.23.5
9
+ opencv_python==4.5.5.64
10
+ opencv_python_headless==4.7.0.68
11
+ pandas==1.5.2
12
+ Pillow==10.1.0
13
+ prodigyopt==1.0
14
+ pydantic==1.10.3
15
+ PyYAML==6.0.1
16
+ Requests==2.31.0
17
+ safetensors==0.3.1
18
+ torch==2.0.1
19
+ torchvision==0.15.2
20
+ tqdm==4.64.1
21
+ transformers==4.27.4
22
+ wandb==0.12.21