-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
45 lines (31 loc) · 1.07 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
from flask import Flask, render_template, redirect, url_for, request
from sklearn.externals import joblib
from flask_sqlalchemy import SQLAlchemy
import os
import numpy as np
import requests
import json
app = Flask(__name__)
app.config.from_object(os.environ["APP_SETTINGS"])
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
db = SQLAlchemy(app)
from models import Result
@app.route("/")
def index():
return render_template("index.html")
@app.route("/predict", methods=['POST'])
def predict():
if request.method=='POST':
regressor = joblib.load("linear_regression_model.pkl")
data = dict(request.form.items())
yearsExperience = np.array(float(data["YearsExperience"])).reshape(-1,1)
prediction = regressor.predict(yearsExperience)
result = Result(
YearsExperience = float(yearsExperience),
Prediction = float(prediction)
)
db.session.add(result)
db.session.commit()
return render_template("predicted.html", prediction=prediction)
if __name__ == '__main__':
app.run(debug=True)