Update app.py
Browse files
app.py
CHANGED
@@ -71,15 +71,15 @@ if __name__ == '__main__':
|
|
71 |
|
72 |
# Create form fields
|
73 |
with gr.Row():
|
74 |
-
age = gr.Number(label="Age", interactive=True
|
75 |
with gr.Row():
|
76 |
-
year1_marks = gr.Number(label="First Year Marks", interactive=True
|
77 |
with gr.Row():
|
78 |
-
year2_marks = gr.Number(label="Second Year Marks", interactive=True
|
79 |
with gr.Row():
|
80 |
-
studytime = gr.Number(label="Study Time (hours/week)", interactive=True
|
81 |
with gr.Row():
|
82 |
-
failures = gr.Number(label="Number of Failures", interactive=True
|
83 |
|
84 |
submit_button = gr.Button("Predict", variant="primary")
|
85 |
output = gr.Textbox(label="Predicted Final Marks", interactive=False)
|
|
|
71 |
|
72 |
# Create form fields
|
73 |
with gr.Row():
|
74 |
+
age = gr.Number(label="Age", interactive=True)
|
75 |
with gr.Row():
|
76 |
+
year1_marks = gr.Number(label="First Year Marks", interactive=True)
|
77 |
with gr.Row():
|
78 |
+
year2_marks = gr.Number(label="Second Year Marks", interactive=True)
|
79 |
with gr.Row():
|
80 |
+
studytime = gr.Number(label="Study Time (hours/week)", interactive=True)
|
81 |
with gr.Row():
|
82 |
+
failures = gr.Number(label="Number of Failures", interactive=True)
|
83 |
|
84 |
submit_button = gr.Button("Predict", variant="primary")
|
85 |
output = gr.Textbox(label="Predicted Final Marks", interactive=False)
|