engi-tech / app.py
n0no123's picture
Upload app.py
f01814d
raw
history blame
708 Bytes
import gradio as gr
home_input = gr.inputs.Number(label="Number of homes in the city")
people_input = gr.inputs.Number(label="Average number of person by home")
bus_input = gr.inputs.Number(label="Number of bus in the city")
distance_input = gr.inputs.Number(label="Average distance by bus each month")
def my_app(home, people, bus, distance):
return "Monthly electrical consumption: " + str(home * 390) + " kWh/mo", "Monthly water consumption: " + str(people * home * 131) + " L/mo", "Monthly CO2 emission: " + str(bus * 36 * distance * 104) + " g/km/mo"
gr.Interface(fn=my_app, inputs=[
home_input, people_input, bus_input, distance_input], outputs=["text", "text", "text"]).launch()