linneafr commited on
Commit
23a6091
1 Parent(s): 925e969

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -1,3 +1,14 @@
1
  import streamlit as st
 
2
 
3
- st.title('Prediction of air quality in Reykjavik, Iceland')
 
 
 
 
 
 
 
 
 
 
 
1
  import streamlit as st
2
+ from PIL import Image
3
 
4
+ #st.title('Prediction of air quality in Reykjavik, Iceland')
5
+ picture = Image.open('iceland_picture.jpg')
6
+
7
+ project = hopsworks.login()
8
+
9
+ with gr.Blocks() as demo:
10
+ gr.Label("Prediction of air quality in Reykjavik, Iceland")
11
+ gr.Textbox(label='day1')
12
+
13
+
14
+ demo.launch()