-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
45 lines (27 loc) · 1.04 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,request,render_template,jsonify
from src.pipeline.prediction_pipeline import CustomData,PredictPipeline
application=Flask(__name__)
app=application
@app.route('/')
def home_page():
return render_template('index.html')
@app.route('/predict',methods=['GET','POST'])
def predict_datapoint():
if request.method=='GET':
return render_template('form.html')
else:
data=CustomData(
age=float(request.form.get('age')),
bmi = float(request.form.get('bmi')),
children = float(request.form.get('children')),
sex = request.form.get('sex'),
smoker= request.form.get('smoker'),
region = request.form.get('region')
)
final_new_data=data.get_data_as_dataframe()
predict_pipeline=PredictPipeline()
pred=predict_pipeline.predict(final_new_data)
results=round(pred[0],2)
return render_template('result.html',final_result=results)
if __name__=="__main__":
app.run(host='0.0.0.0',debug=True)