-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflask_app_test.py
More file actions
41 lines (31 loc) · 1.01 KB
/
Copy pathflask_app_test.py
File metadata and controls
41 lines (31 loc) · 1.01 KB
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
# -*- coding: utf-8 -*-
"""
Created on Fri Feb 25 18:02:42 2022
@author: darkf
"""
from flask import Flask,request
import pandas as pd
import numpy as np
import pickle
app=Flask(__name__)#Which point you are goin to start
pickle_in=open('classifier.pkl','rb')
classifier=pickle.load(pickle_in)
#root path
@app.route('/')
def welcome():
return "Welcome All"
@app.route('/predict')
def predict_note_authentication():
variance=request.args.get('variance')
skewness=request.args.get('skewness')
curtosis=request.args.get('curtosis')
entropy=request.args.get('entropy')
prediction=classifier.predict([[variance,skewness,curtosis,entropy]])
return "The predicted values is"+str(prediction)
@app.route('/predict_file',methods=["POST"])
def predict_note_file():
df_test=pd.read_csv(request.files.get("file"))
prediction=classifier.predict(df_test)
return "The predicted values of csv are"+str(list(prediction))
if __name__=='__main__':
app.run()