Update app.py
Browse files
app.py
CHANGED
@@ -77,9 +77,9 @@ css = """
|
|
77 |
app = gr.Interface(
|
78 |
fn=carbonFootPrintAI,
|
79 |
inputs=[
|
80 |
-
gr.Number(label="Monthly Gas Bill", elem_classes="app"),
|
81 |
-
gr.Number(label="Monthly Oil Bill", elem_classes="app"),
|
82 |
-
gr.Number(label="Monthly Electricity Bill", elem_classes="app"),
|
83 |
gr.Slider(label="Total Yearly Mileage on Car", value = 0, minimum = 0, maximum = 50000, step = 1, elem_classes="app"),
|
84 |
gr.Slider(label="Number of Flights Less Than or Equal to 4 Hours", value = 0, minimum = 0, maximum = 100, step = 1, elem_classes="app"),
|
85 |
gr.Slider(label="Number of Flights More Than or Equal to 4 Hours", value = 0, minimum = 0, maximum = 100, step = 1, elem_classes="app"),
|
|
|
77 |
app = gr.Interface(
|
78 |
fn=carbonFootPrintAI,
|
79 |
inputs=[
|
80 |
+
gr.Number(label="Monthly Gas Bill ($)", elem_classes="app"),
|
81 |
+
gr.Number(label="Monthly Oil Bill ($)", elem_classes="app"),
|
82 |
+
gr.Number(label="Monthly Electricity Bill ($)", elem_classes="app"),
|
83 |
gr.Slider(label="Total Yearly Mileage on Car", value = 0, minimum = 0, maximum = 50000, step = 1, elem_classes="app"),
|
84 |
gr.Slider(label="Number of Flights Less Than or Equal to 4 Hours", value = 0, minimum = 0, maximum = 100, step = 1, elem_classes="app"),
|
85 |
gr.Slider(label="Number of Flights More Than or Equal to 4 Hours", value = 0, minimum = 0, maximum = 100, step = 1, elem_classes="app"),
|