{% extends 'bootstrap_base.html' %} {% from 'bootstrap/form.html' import render_field %} {% from 'bootstrap/form.html' import render_form %} {% block header %}

Loan prediction Task {{task_index}} / 10

Given applicant's statistics, you are asked to decide whether to lend him (her) money. This page shows an AI system's prediction and its accuracy, you may refer to them and make your decision.

{% endblock %} {% block content %}
Loan ID Gender Married Dependents Self Employed Education
{{loan_data.Loan_ID}} {{loan_data.Gender}} {{loan_data.Married}} {{loan_data.Dependents}} {{loan_data.Self_Employed}} {{loan_data.Education}}
Applicant Income Coapplicant Income Loan Amount Loan Amount Term Credit History Property Area
{{loan_data.ApplicantIncome}} {{loan_data.CoapplicantIncome}} {{loan_data.LoanAmount}} {{loan_data.Loan_Amount_Term}} {{loan_data.Credit_History}} {{loan_data.Property_Area}}

Statistics for loan applicant:

{{loan_str | safe}}

System advice:

{{accuracy_str | safe}}

Task:

{{render_form(form, button_style='success', button_size='block')}} {% endblock %}