-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
75 lines (62 loc) · 1.7 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import numpy as np
from flask import Flask, request, jsonify, render_template
import pickle
app = Flask(__name__)
model = pickle.load(open('model.pkl', 'rb'))
@app.route('/')
def home():
return render_template('index.html')
@app.route('/predict',methods=['POST'])
def predict():
'''
For rendering results on HTML GUI
'''
int_features = []
for x in request.form.values():
if(x=='M'):
x=1
elif(x=='F'):
x=0
elif(x=='S'):
x=1
elif(x=='C'):
x=0
elif(x=='A'):
x=0
elif(x=='CM'):
x=1
elif(x=='SC'):
x=2
elif(x=='T'):
x=2
elif(x=='M'):
x=0
elif(x=='O'):
x=1
elif(x=='N'):
x=0
elif(x=='Y'):
x=1
elif(x=='H'):
x=1
elif(x=='F'):
x=0
int_features.append(int(x))
final_features = [np.array(int_features)]
prediction = model.predict(final_features)
output = round(prediction[0], 2)
if(output==1):
return render_template('index.html', prediction_text='Congratulations! you will be placed ')
if(output==0):
return render_template('index.html', prediction_text='keep up the hardwork! Placement chances are low ')
@app.route('/predict_api',methods=['POST'])
def predict_api():
'''
For direct API calls trought request
'''
data = request.get_json(force=True)
prediction = model.predict([np.array(list(data.values()))])
output = prediction[0]
return jsonify(output)
if __name__ == "__main__":
app.run(debug=True)