Ottosen commited on
Commit
4680869
·
1 Parent(s): f6fb806

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -16
app.py DELETED
@@ -1,16 +0,0 @@
1
- import numpy as np
2
-
3
- def sepia(image):
4
- sepia_filter = np.array(
5
- [[0.393, 0.769, 0.189],
6
- [0.349, 0.686, 0.168],
7
- [0.272, 0.534, 0.131]]
8
- )
9
- sepia_img = image.dot(sepia_filter.T)
10
- sepia_img /= sepia_img.max()
11
- return sepia_img
12
-
13
- import gradio as gr
14
-
15
- # Write 1 line of Python to create a simple GUI
16
- gr.Interface(fn=sepia, inputs="image", outputs="image").launch();