Hemg commited on
Commit
1ef568b
·
verified ·
1 Parent(s): 475b95c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -52,13 +52,13 @@ iface = gr.Interface(
52
  fn=predict_performance,
53
  inputs=[
54
  gr.Slider(minimum=2024, maximum=2025, step=1, label="Year",info="The forecasted Year"),
55
- gr.Slider(minimum=10000, maximum=50000, step=500, label="Instagram_Advertising", info="How much do you spend on Instagram ads Yearly?"),
56
- gr.Slider(minimum=10000, maximum=50000, step=500, label="Facebook_Advertising", info="How much do you spend on Facebook ads Yearly?"),
57
- gr.Slider(minimum=20000, maximum=50000, step=500, label="Event_Expenses", info="What’s your typical budget for events?"),
58
- gr.Slider(minimum=5000, maximum=25000, step=500, label="Internet_Expenses", info="How much do you spend on internet Yearly")
59
  ],
60
  outputs=gr.HTML(), # Specify the output as HTML
61
- title="Student Admitted Forecast",
62
  description="Predict the forecast of admitted students based on marketing expenditures"
63
  )
64
 
 
52
  fn=predict_performance,
53
  inputs=[
54
  gr.Slider(minimum=2024, maximum=2025, step=1, label="Year",info="The forecasted Year"),
55
+ gr.Slider(minimum=10000, maximum=50000, step=500, label="Instagram_Advertising", info="How much do you spend on Instagram ads Yearly($)?"),
56
+ gr.Slider(minimum=10000, maximum=50000, step=500, label="Facebook_Advertising", info="How much do you spend on Facebook ads Yearly($)?"),
57
+ gr.Slider(minimum=20000, maximum=50000, step=500, label="Event_Expenses", info="What’s your typical budget for events($)?"),
58
+ gr.Slider(minimum=5000, maximum=25000, step=500, label="Internet_Expenses", info="How much do you spend on internet Yearly($)?")
59
  ],
60
  outputs=gr.HTML(), # Specify the output as HTML
61
+ title="Student Admission Forecast",
62
  description="Predict the forecast of admitted students based on marketing expenditures"
63
  )
64