File size: 636 Bytes
7e844a8
23a6091
f9cb9bd
 
cb76003
7e844a8
23a6091
9cf3e85
 
23a6091
a9caf68
cb76003
 
 
23a6091
 
 
04a4401
cb76003
1cb41c0
cb76003
 
 
 
 
23a6091
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import streamlit as st
from PIL import Image
import hopsworks 
import gradio as gr
import datetime 

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

#project = hopsworks.login()
today = datetime.date.today()



with gr.Blocks() as demo:
    gr.Label("Prediction of air quality in Reykjavik, Iceland")
    gr.Image("iceland_picture.jpg")
    gr.Textbox(label=today)
    gr.Textbox(label='day2')
    gr.Textbox(label='day3')
    gr.Textbox(label='day4')
    gr.Textbox(label='day5')
    gr.Textbox(label='day6')
    gr.Textbox(label='day7')
    

demo.launch()