File size: 1,457 Bytes
8235aef
 
 
8ca8dfd
8235aef
 
993a62b
 
 
 
 
 
 
8235aef
 
 
 
 
 
 
 
 
 
 
993a62b
8235aef
 
 
 
993a62b
 
8235aef
 
 
 
 
 
 
 
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
29
30
31
32
33
34
35
36
37
38
39
40
import gradio as gr

def dummy_function(*args):
    # Dummy function for UI display only.
    return "This is a UI display only. No computation performed."

# Define dropdown choices for months and days.
months = [
    "January", "February", "March", "April", "May", "June",
    "July", "August", "September", "October", "November", "December"
]
days = list(range(1, 32))  # Days 1 to 31

# Define Gradio interface with updated inputs
iface = gr.Interface(
    fn=dummy_function,
    inputs=[
         gr.Dropdown(
             choices=[
                 "Mid-Levels West", "Mid-Levels Central", "Sheung Wan",
                 "Sai Ying Pun", "Kennedy Town", "North Point", "Quarry Bay", "Aberdeen"
             ],
             label='District'
         ),
         gr.Textbox(label='Building Address'),
         gr.Dropdown(choices=list(range(1, 71)), label='Floor'),
         gr.Dropdown(choices=list(range(1, 31)), label='Unit (e.g., A=1, B=2, C=3, ...)'),
         gr.Slider(minimum=137, maximum=5000, step=1, label='Area (in sq. feet)'),
         gr.Dropdown(choices=list(range(2022, 2024)), label='Year'),
         gr.Dropdown(choices=months, label='Month'),
         gr.Dropdown(choices=days, label='Day')
    ],
    outputs=gr.Textbox(label='Output'),
    title="PROPERTY PRICE PREDICTION TOOL UI DISPLAY",
    description="This UI is for display purposes only. No prediction functions are enabled."
)

if __name__ == "__main__":
    iface.launch()