This repository has been archived by the owner on Nov 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 571
/
api.py
65 lines (52 loc) · 2.08 KB
/
api.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
"""
Simple Flask-based API for Serving an sklearn Model.
Author: Explore Data Science Academy.
Note:
---------------------------------------------------------------------
Please follow the instructions provided within the README.md file
located within this directory for guidance on how to use this script
correctly.
---------------------------------------------------------------------
Description: This file instantiates a Flask webserver
as a means to create a simple API used to deploy models trained within
the sklearn framework.
"""
# API Dependencies
import pickle
import json
import numpy as np
from model import load_model, make_prediction
from flask import Flask, request, jsonify
# Application definition
app = Flask(__name__)
# Load our model into memory.
# Please update this path to reflect your own trained model.
static_model = load_model(
path_to_model='assets/trained-models/load_shortfall_simple_lm_regression.pkl')
print ('-'*40)
print ('Model successfully loaded')
print ('-'*40)
""" You may use this section (above the app routing function) of the python script to implement
any auxiliary functions required to process your model's artifacts.
"""
# Define the API's interface.
# Here the 'model_prediction()' function will be called when a POST request
# is sent to our interface located at:
# http:{Host-machine-ip-address}:5000/api_v0.1
@app.route('/api_v0.1', methods=['POST'])
def model_prediction():
# We retrieve the data payload of the POST request
data = request.get_json(force=True)
# We then preprocess our data, and use our pretrained model to make a
# prediction.
output = make_prediction(data, static_model)
# We finally package this prediction as a JSON object to deliver a valid
# response with our API.
return jsonify(output)
# Configure Server Startup properties.
# Note:
# When developing your API, set `debug=True`
# This will allow Flask to automatically restart itself everytime you
# update your API code.
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=False)