rscolati commited on
Commit
04c7eb5
1 Parent(s): ce5f3ab

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -48,7 +48,7 @@ def get_temp(date):
48
  demo = gr.Interface(
49
  fn = predict,
50
  title = "NY Electricity Demand Prediction",
51
- description ="Daily NY Electricity Demand Prediction",
52
  allow_flagging = "never",
53
  inputs = [],
54
  outputs = [
@@ -63,4 +63,7 @@ demo = gr.Interface(
63
  # - show prediction for two days ago
64
 
65
  # TODO: allow custom date/temp input (default to today)?
 
 
 
66
  demo.launch()
 
48
  demo = gr.Interface(
49
  fn = predict,
50
  title = "NY Electricity Demand Prediction",
51
+ description ="Daily NY electricity demand prediction, based on current date (day, holiday, ...) and (forecast) temperature average.",
52
  allow_flagging = "never",
53
  inputs = [],
54
  outputs = [
 
63
  # - show prediction for two days ago
64
 
65
  # TODO: allow custom date/temp input (default to today)?
66
+
67
+ # TODO: have done some versioning mess (see reqs file)
68
+
69
  demo.launch()