gradio/demo/tax_calculator/run.py

43 lines
1.2 KiB
Python
Raw Normal View History

2021-05-24 23:31:44 +08:00
import gradio as gr
2021-05-24 23:31:44 +08:00
def tax_calculator(income, marital_status, assets):
tax_brackets = [(10, 0), (25, 8), (60, 12), (120, 20), (250, 30)]
2021-05-24 23:31:44 +08:00
total_deductible = sum(assets[assets["Deduct"]]["Cost"])
taxable_income = income - total_deductible
total_tax = 0
for bracket, rate in tax_brackets:
if taxable_income > bracket:
total_tax += (taxable_income - bracket) * rate / 100
2021-05-24 23:31:44 +08:00
if marital_status == "Married":
total_tax *= 0.75
elif marital_status == "Divorced":
total_tax *= 0.8
2021-05-24 23:31:44 +08:00
return round(total_tax)
2021-05-24 23:31:44 +08:00
iface = gr.Interface(
tax_calculator,
2021-05-24 23:31:44 +08:00
[
"number",
gr.inputs.Radio(["Single", "Married", "Divorced"]),
gr.inputs.Dataframe(
headers=["Item", "Cost", "Deduct"],
2021-05-24 23:31:44 +08:00
datatype=["str", "number", "bool"],
label="Assets Purchased this Year",
),
2021-05-24 23:31:44 +08:00
],
"number",
# interpretation="default", # Removed interpretation for dataframes
2021-05-24 23:31:44 +08:00
examples=[
[10000, "Married", [["Car", 5000, False], ["Laptop", 800, True]]],
[80000, "Single", [["Suit", 800, True], ["Watch", 1800, False]]],
],
2021-05-24 23:31:44 +08:00
)
if __name__ == "__main__":
iface.launch()