forked from MaajidKhan/DeployMLModel-Flask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapplication.py
More file actions
26 lines (20 loc) · 747 Bytes
/
Copy pathapplication.py
File metadata and controls
26 lines (20 loc) · 747 Bytes
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
import numpy as np
from flask import Flask, request, jsonify, render_template
import pickle
application = Flask(__name__) #Initialize the flask App
model = pickle.load(open('model.pkl', 'rb'))
@application.route('/')
def home():
return render_template('index.html')
@application.route('/predict',methods=['POST'])
def predict():
'''
For rendering results on HTML GUI
'''
int_features = [int(x) for x in request.form.values()]
final_features = [np.array(int_features)]
prediction = model.predict(final_features)
output = round(prediction[0], 2)
return render_template('index.html', prediction_text='Employee Salary should be $ {}'.format(output))
if __name__ == "__main__":
application.run(debug=True)