yupikopi commited on
Commit
90b13c8
·
1 Parent(s): 355ada4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -1,4 +1,6 @@
1
  import keras.backend as K
 
 
2
  def psnr(y_true, y_pred):
3
  return -10*K.log(K.mean(K.flatten((y_true - y_pred))**2)) / np.log(10)
4
 
 
1
  import keras.backend as K
2
+ import gradio as gr
3
+
4
  def psnr(y_true, y_pred):
5
  return -10*K.log(K.mean(K.flatten((y_true - y_pred))**2)) / np.log(10)
6