Spaces:
Sleeping
Sleeping
mistermprah
commited on
Commit
•
1b108a9
1
Parent(s):
dbd813e
Update app.py
Browse files
app.py
CHANGED
@@ -140,10 +140,9 @@ historical_data_iface = gr.Interface(
|
|
140 |
)
|
141 |
|
142 |
# Combine interfaces
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
historical_data_iface.render()
|
148 |
|
149 |
app.launch()
|
|
|
140 |
)
|
141 |
|
142 |
# Combine interfaces
|
143 |
+
app = gr.TabbedInterface(
|
144 |
+
interface_list=[iface, next_month_iface, historical_data_iface],
|
145 |
+
tab_names=["Predict Today's Price", "Predict Next Month's Price", "View Historical Data"]
|
146 |
+
)
|
|
|
147 |
|
148 |
app.launch()
|