Antcar commited on
Commit
31bbd90
Β·
verified Β·
1 Parent(s): f4f7cd3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -43,8 +43,8 @@ def predict_eta(distance_meters, num_stops, hour, day_name, route_id):
43
  except Exception as e:
44
  return f"Error: {str(e)}"
45
 
46
- # 2. Build the UI using Blocks (More stable than Interface)
47
- with gr.Blocks(theme=gr.themes.Soft()) as demo:
48
  gr.Markdown("# HK-TransitFlow-Net Demo 🚌")
49
  gr.Markdown("Live inference for HK Bus ETA prediction.")
50
 
 
43
  except Exception as e:
44
  return f"Error: {str(e)}"
45
 
46
+ # 2. Build the UI using Blocks (Standard Theme)
47
+ with gr.Blocks() as demo:
48
  gr.Markdown("# HK-TransitFlow-Net Demo 🚌")
49
  gr.Markdown("Live inference for HK Bus ETA prediction.")
50