cmck commited on
Commit
45f891c
1 Parent(s): fe903ec

add requirements.txt

Browse files
Files changed (2) hide show
  1. app.py +6 -3
  2. requirements.txt +1 -0
app.py CHANGED
@@ -1,7 +1,10 @@
 
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()
 
1
+ from fastai.vision.all import *
2
  import gradio as gr
3
 
4
+ learn = load_learner('model.pkl')
 
5
 
6
+ def is_cat(img):
7
+ return 0
8
+
9
+ iface = gr.Interface(fn=is_cat, inputs="text", outputs="text")
10
  iface.launch()
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ gradio