File size: 366 Bytes
7e844a8
23a6091
1cb41c0
7e844a8
23a6091
 
 
 
 
 
 
 
1cb41c0
23a6091
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st
from PIL import Image
import hopsworks 

#st.title('Prediction of air quality in Reykjavik, Iceland')
picture = Image.open('iceland_picture.jpg')

project = hopsworks.login()

with gr.Blocks() as demo:
    gr.Label("Prediction of air quality in Reykjavik, Iceland")
    gr.Textbox(label='day1')
    gr.Textbox(label='day2')
    

demo.launch()