-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlask.py
More file actions
36 lines (26 loc) · 963 Bytes
/
Flask.py
File metadata and controls
36 lines (26 loc) · 963 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
27
28
29
30
31
32
33
34
35
36
import numpy as np
from flask import Flask , request , jsonify , render_template
from joblib import dump, load
app = Flask(__name__)
app.static_folder = 'static'
model = load('Updated_DIABETESPRED.joblib')
@app.route('/')
def home():
return render_template('index.html')
@app.route('/predict' , methods = ['POST'])
def predict():
int_features = [float(x) for x in request.form.values()]
final_features = [np.array(int_features)]
print(final_features)
prediction = model.predict(final_features)
print(prediction[0])
if prediction[0] == 0:
return render_template('index.html' , prediction_text ="No , you don't have diabetes")
else:
return render_template('index.html' , prediction_text = "Yes, you have diabetes")
@app.route('/1')
def home1():
name = "Rohit"
return render_template('Hello.php' , name = name)
if __name__ == "__main__":
app.run(debug = True)