-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.py
40 lines (32 loc) · 1.11 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
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('/', methods=['GET'])
def home():
return render_template('index.html')
@app.route('/predict',methods=['POST'])
def predict():
'''
For rendering results on HTML GUI
'''
if request.method == "POST":
int_features = [int ( x ) for x in request.form.values ()]
final_features = [np.array ( int_features )]
prediction = model.predict ( final_features )
output = prediction
return render_template ( 'result.html', prediction_text=' The Recommended Crop to grow is {}'.format ( output ) )
else:
return render_template('index.html')
@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
return jsonify(output)
if __name__ == "__main__":
app.run(debug=True)