lunde commited on
Commit
a768299
1 Parent(s): f262293

Add more info about FPS

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -36,6 +36,7 @@ def fix_lowlight(image: Image.Image) -> Image.Image:
36
  def main():
37
  st.title("Lowlight Enhancement")
38
  st.write("This is a simple lowlight enhancement app with great performance and does not require paired images to train.")
 
39
  uploaded_file = st.file_uploader("Lowlight Image")
40
  if uploaded_file:
41
  data_lowlight = Image.open(uploaded_file)
 
36
  def main():
37
  st.title("Lowlight Enhancement")
38
  st.write("This is a simple lowlight enhancement app with great performance and does not require paired images to train.")
39
+ st.write("The model runs at 1000/11 FPS on single GPU/CPU on images with a size of 1200*900*3")
40
  uploaded_file = st.file_uploader("Lowlight Image")
41
  if uploaded_file:
42
  data_lowlight = Image.open(uploaded_file)