mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-09 02:00:44 +08:00
94ab75dbec
* refresh dataframe * add fixed rows + cols to dataframe * tweaks * validate dataframe headers + col_count * cleanup * cleanup * make linter happy * fix test * fix test again * fix test definitely this time * implement file drop support for dataframe * remove leftover files * tweaks Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
42 lines
1.0 KiB
Python
42 lines
1.0 KiB
Python
import gradio as gr
|
|
|
|
|
|
def tax_calculator(income, marital_status, assets):
|
|
tax_brackets = [(10, 0), (25, 8), (60, 12), (120, 20), (250, 30)]
|
|
total_deductible = sum(assets["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
|
|
|
|
if marital_status == "Married":
|
|
total_tax *= 0.75
|
|
elif marital_status == "Divorced":
|
|
total_tax *= 0.8
|
|
|
|
return round(total_tax)
|
|
|
|
|
|
demo = gr.Interface(
|
|
tax_calculator,
|
|
[
|
|
"number",
|
|
gr.Radio(["Single", "Married", "Divorced"]),
|
|
gr.Dataframe(
|
|
headers=["Item", "Cost"],
|
|
datatype=["str", "number"],
|
|
label="Assets Purchased this Year",
|
|
),
|
|
],
|
|
"number",
|
|
examples=[
|
|
[10000, "Married", [["Suit", 5000], ["Laptop", 800], ["Car", 1800]]],
|
|
[80000, "Single", [["Suit", 800], ["Watch", 1800], ["Car", 800]]],
|
|
],
|
|
)
|
|
|
|
if __name__ == "__main__":
|
|
demo.launch()
|