Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def dummy_function(*args):
|
4 |
+
# This dummy function does nothing and is only used for UI display.
|
5 |
+
return "This is a UI display only. No computation performed."
|
6 |
+
|
7 |
+
# Define Gradio interface with updated inputs
|
8 |
+
iface = gr.Interface(
|
9 |
+
fn=dummy_function,
|
10 |
+
inputs=[
|
11 |
+
gr.Dropdown(
|
12 |
+
choices=[
|
13 |
+
"Mid-Levels West", "Mid-Levels Central", "Sheung Wan",
|
14 |
+
"Sai Ying Pun", "Kennedy Town", "North Point", "Quarry Bay", "Aberdeen"
|
15 |
+
],
|
16 |
+
label='District'
|
17 |
+
),
|
18 |
+
gr.Textbox(label='Building Name'),
|
19 |
+
gr.Dropdown(choices=list(range(1, 71)), label='Floor'),
|
20 |
+
gr.Dropdown(choices=list(range(1, 31)), label='Unit (e.g., A=1, B=2, C=3, ...)'),
|
21 |
+
gr.Slider(minimum=137, maximum=5000, step=1, label='Area (in sq. feet)'),
|
22 |
+
gr.Dropdown(choices=list(range(2022, 2024)), label='Year'),
|
23 |
+
gr.Dropdown(choices=list(range(1, 53)), label='Week Number')
|
24 |
+
],
|
25 |
+
outputs=gr.Textbox(label='Output'),
|
26 |
+
title="PROPERTY PRICE PREDICTION TOOL UI DISPLAY",
|
27 |
+
description="This UI is for display purposes only. No prediction functions are enabled."
|
28 |
+
)
|
29 |
+
|
30 |
+
if __name__ == "__main__":
|
31 |
+
iface.launch()
|