harshiv commited on
Commit
363ca0a
·
1 Parent(s): 88752b7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -48,12 +48,13 @@ def predict_placement(Internships, CGPA, HistoryOfBacklogs):
48
  # Return the predicted label
49
  return 'Placed' if prediction else 'Not Placed'
50
 
51
- # Create the Gradio interface
52
- iface = gr.Interface(fn=predict_placement,
53
- inputs=input_type,
54
- outputs=output_type,
55
- title='Student Job Placement Predictor',
56
- description='Predicts whether a student will be placed in a job or not based on internships, CGPA, and history of backlogs.')
 
57
 
58
  # Launch the Gradio interface
59
- iface.launch()
 
48
  # Return the predicted label
49
  return 'Placed' if prediction else 'Not Placed'
50
 
51
+ interface = gr.Interface(
52
+ fn=predict_placement,
53
+ inputs=["number", "number", "number"],
54
+ outputs="text",
55
+ title="Student Placement Prediction",
56
+ description="Predict whether a student will be placed in a job based on their internships, CGPA, and history of backlogs."
57
+ )
58
 
59
  # Launch the Gradio interface
60
+ interface.launch()