-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
executable file
·49 lines (37 loc) · 1.22 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
46
47
48
49
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Tue Jan 12 12:53:29 2021
@author: sharad
File for testing Docker and Falsk
"""
from flask import Flask,request
import pandas as pd
import numpy as np
import pickle
app=Flask(__name__)
pickle_in=open('classifier.pkl','rb')
classifier=pickle.load(pickle_in)
#Entry page
@app.route('/')
def welcome():
return "Welcome to Flask API"
#To predict by getting input from user
# http://127.0.0.1:5000/predict?variance=0&skewness=-2&curtosis=-1&entropy=4
@app.route('/predict')
def predict():
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 value is "+str(prediction)
#To predict by passing a file
#use postman
@app.route('/predict_file',methods=['POST'])
def predict_file():
df_test=pd.read_csv(request.files.get("file"))
prediction=classifier.predict(df_test)
return "The Predicted values for the csv are "+str(list(prediction))
if __name__== '__main__':
app.run(host='0.0.0.0',port=8000)