guru001 commited on
Commit
e99a146
1 Parent(s): 4c944da

model uploaded

Browse files
Files changed (1) hide show
  1. app.py +7 -10
app.py CHANGED
@@ -1,15 +1,12 @@
1
  import numpy as np
2
  import gradio as gr
 
3
 
4
- def sepia(input_img):
5
- sepia_filter = np.array([
6
- [0.393, 0.769, 0.189],
7
- [0.349, 0.686, 0.168],
8
- [0.272, 0.534, 0.131]
9
- ])
10
- sepia_img = input_img.dot(sepia_filter.T)
11
- sepia_img /= sepia_img.max()
12
- return "hello"
13
 
14
- demo = gr.Interface(sepia,inputs=gr.Image(shape=(200, 200)), outputs=gr.Label())
 
 
 
 
15
  demo.launch()
 
1
  import numpy as np
2
  import gradio as gr
3
+ from model import api
4
 
5
+ sign_api = api()
 
 
 
 
 
 
 
 
6
 
7
+ def sign(input_img):
8
+ prediction = sign_api.predict(image)
9
+ return prediction
10
+
11
+ demo = gr.Interface(sign,inputs=gr.Image(shape=(200, 200)), outputs=gr.Label())
12
  demo.launch()