Spaces:
Runtime error
Runtime error
Commit
·
e3cece8
1
Parent(s):
525f3dd
adding requirements
Browse files- app.py +2 -0
- requirements.txt +5 -0
app.py
CHANGED
@@ -1,4 +1,6 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
def greet(name):
|
4 |
return "Hello " + name + "!!"
|
|
|
1 |
import gradio as gr
|
2 |
+
import tensorflow as tf
|
3 |
+
|
4 |
|
5 |
def greet(name):
|
6 |
return "Hello " + name + "!!"
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
tensorflow == 2.12
|
2 |
+
opencv-python
|
3 |
+
tqdm
|
4 |
+
pandas
|
5 |
+
seaborn
|