如何使用Flask轻松部署机器学习模型?

如何使用Flask轻松部署机器学习模型?

部署机器学习模型或将模型部署到生产环境意味着将模型提供给最终用户或系统。然而,部署机器学习模型存在复杂性。本文旨在让你开始使用Flask API将经过训练的机器学习模型部署到生产环境。

我将利用线性回归,使用利率和前两个月的销售额来预测第三个月的销售额。

什么是线性回归?

线性回归模型的目的是找到一个或多个特征(独立变量)与连续目标变量(独立变量)之间的关系。如果只有特征,名为单变量线性回归;如果有多个特征,名为多变量线性回归。

线性回归假设

线性回归模型可用下列方程式加以表示:

如何使用Flask轻松部署机器学习模型?

  • Y是预测值
  • θ₀是偏项。
  • θ₁,…,θn是模型参数
  • x 1,x 2,…,x n是特征值。

如何使用Flask轻松部署机器学习模型?

图1. 线性回归图解

为什么使用Flask?

  • 易于使用。
  • 内置的开发服务器和调试器。
  • 集成的单元测试支持。
  • 充分利用REST的请求分派。
  • 丰富的说明文档。

项目结构

该项目有四个部分:

  1. model.py——这包含机器学习模型基于头两个月的销售额预测第三个月销售额的代码。
  2. app.py——这包含通过GUI或API调用接收销售明细,基于我们的模型计算预测值并返回的Flask API。
  3. request.py —这使用请求模块来调用app.py中定义的API,并显示返回值。
  4. HTML/CSS——这包含让用户可以输入销售明细并显示第三个月预测销售额的HTML模板和CSS样式。

如何使用Flask轻松部署机器学习模型?

图2. 部署机器学习模型的管道

环境和工具

  1. scikit-learn
  2. pandas
  3. numpy
  4. flask

代码在哪里?

不妨先从代码开始入手。Github上的整个项目可以在这里(https://github.com/abhinavsagar/Machine-Learning-Deployment-Tutorials)找到。

先从使用HTML构建前端以便用户输入值入手。用户需要填三个字段:利率、第一个月的销售额和第二个月的销售额。

  1. <!DOCTYPE html> 
  2. <html > 
  3. <head> 
  4.   <meta charset="UTF-8"
  5.   <title>Deployment Tutorial 1</title> 
  6.   <link href='https://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'
  7. <link href='https://fonts.googleapis.com/css?family=Arimo' rel='stylesheet' type='text/css'
  8. <link href='https://fonts.googleapis.com/css?family=Hind:300' rel='stylesheet' type='text/css'
  9. <link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel='stylesheet' type='text/css'
  10. <link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}"
  11.    
  12. </head> 
  13.  
  14. <body style="background: #000;"
  15.  <div class="login"
  16.     <h1>Sales Forecasting</h1> 
  17.  
  18.      <!-- Main Input For Receiving Query to our ML --> 
  19.     <form action="{{ url_for('predict')}}"method="post"
  20.         <input type="text" name="rate" placeholder="rate" required="required" /> 
  21.         <input type="text" name="sales in first month" placeholder="sales in first month" required="required" /> 
  22.         <input type="text" name="sales in second month" placeholder="sales in second month" required="required" /> 
  23.         <button type="submit" class="btn btn-primary btn-block btn-large">Predict sales in third month</button> 
  24.     </form> 
  25.  
  26.    <br> 
  27.    <br> 
  28.    {{ prediction_text }} 
  29.  
  30.  </div> 
  31. </body> 
  32. </html>  

接下来我使用CSS,为输入按钮、登录按钮和背景构建一些样式。

  1.     @import url(https://fonts.googleapis.com/css?family=Open+Sans); 
  2.      
  3.     html { width: 100%; height:100%; overflow:hidden; } 
  4.      
  5.     body {  
  6.         width: 100%; 
  7.         height:100%; 
  8.         font-family: 'Helvetica'
  9.         background: #000; 
  10.         color: #fff; 
  11.         font-size: 24px; 
  12.         text-align:center; 
  13.         letter-spacing:1.4px; 
  14.      
  15.     } 
  16.     .login {  
  17.         position: absolute
  18.         top: 40%; 
  19.         left: 50%; 
  20.         margin: -150px 0 0 -150px; 
  21.         width:400px; 
  22.         height:400px; 
  23.     } 
  24.      
  25.     .login h1 { color: #fff; text-shadow: 0 0 10px rgba(0,0,0,0.3); letter-spacing:1px; text-align:center; } 
  26.      
  27.     input {  
  28.         width: 100%;  
  29.         margin-bottom: 10px;  
  30.         background: rgba(0,0,0,0.3); 
  31.         border: none; 
  32.         outline: none; 
  33.         padding: 10px; 
  34.         font-size: 13px; 
  35.         color: #fff; 
  36.         text-shadow: 1px 1px 1px rgba(0,0,0,0.3); 
  37.         border: 1px solid rgba(0,0,0,0.3); 
  38.         border-radius: 4px; 
  39.         box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px 1px rgba(255,255,255,0.2); 
  40.         -webkit-transition: box-shadow .5s ease; 
  41.         -moz-transition: box-shadow .5s ease; 
  42.         -o-transition: box-shadow .5s ease; 
  43.         -ms-transition: box-shadow .5s ease; 
  44.         transition: box-shadow .5s ease; 
  45.     } 
  46. view rawstyle.css hosted with ❤ by GitHub 
  47.  

我为这个项目创建了自定义销售数据集,它有四列:利率、第一个月的销售额、第二个月的销售额和第三个月的销售额。 

 

rate

sales_in_first_month

sales_in_second_month

sales_in_third_month

   

2

500

300

   

4

300

650

 

four

600

200

400

 

nine

450

320

650

 

seven

600

250

350

 

five

550

200

700

view rawsales.csv hosted with by GitHub

现在,不妨构建一个机器学习模型来预测第三个月的销售额。首先,不妨使用Pandas处理缺失的值。如果没有为一个或多个项提供任何信息,数据会丢失。如果未提供值,我将在利率这列填充零,将在第一个月的销售额这列填充该列的平均值。我使用线性回归作为机器学习算法。

序列化/反序列化

简而言之,序列化是一种在磁盘上写入Python对象(对象可以传输到任何地方),以后由Python脚本反序列化(读回)的方法。

如何使用Flask轻松部署机器学习模型?

图3. 序列化和反序列化

我使用pickling将Python对象这种形式的模型转换成字符流。其想法是,该字符流含有用另一个Python脚本重新构建对象必需的所有信息。

  1.     import numpy as np 
  2.     import matplotlib.pyplot as plt 
  3.     import pandas as pd 
  4.     import pickle 
  5.      
  6.     dataset = pd.read_csv('sales.csv'
  7.      
  8.     dataset['rate'].fillna(0, inplace=True
  9.      
  10.     dataset['sales_in_first_month'].fillna(dataset['sales_in_first_month'].mean(), inplace=True
  11.      
  12.     X = dataset.iloc[:, :3] 
  13.      
  14.     def convert_to_int(word): 
  15.         word_dict = {'one':1, 'two':2, 'three':3, 'four':4, 'five':5, 'six':6, 'seven':7, 'eight':8, 
  16.                     'nine':9, 'ten':10, 'eleven':11, 'twelve':12, 'zero':0, 0: 0} 
  17.         return word_dict[word] 
  18.      
  19.     X['rate'] = X['rate'].apply(lambda x : convert_to_int(x)) 
  20.      
  21.     y = dataset.iloc[:, -1] 
  22.      
  23.     from sklearn.linear_model import LinearRegression 
  24.     regressor = LinearRegression() 
  25.      
  26.     regressor.fit(X, y) 
  27.      
  28.     pickle.dump(regressor, open('model.pkl','wb')) 
  29.      
  30.     model = pickle.load(open('model.pkl','rb')) 
  31.     print(model.predict([[4, 300, 500]])) 
  32. view rawmodel.py hosted with ❤ by GitHub  

下一个部分是构建这样一个API:通过GUI收到销售明细后,基于我们的模型来计算预测的销售额。为此,我反序列了Python对象这种形式的pickled模型。我使用index.html设置主页面。一旦使用POST将表单值提交给/predict,我们就获得了预测销售额。

只要对/results提出另一个POST请求,即可显示结果。它收到JSON输入,使用经过训练的模型来进行预测,并返回使用JSON格式的该预测,它可通过API端点来访问。

  1. import numpy as np 
  2. from flask import Flask, request, jsonify, render_template 
  3. import pickle 
  4.  
  5. app = Flask(__name__) 
  6. model = pickle.load(open('model.pkl''rb')) 
  7.  
  8. @app.route('/'
  9. def home(): 
  10.     return render_template('index.html'
  11.  
  12. @app.route('/predict',methods=['POST']) 
  13. def predict(): 
  14.  
  15.     int_features = [int(x) for x in request.form.values()] 
  16.     final_features = [np.array(int_features)] 
  17.     prediction = model.predict(final_features) 
  18.  
  19.     output = round(prediction[0], 2) 
  20.  
  21.     return render_template('index.html', prediction_text='Sales should be $ {}'.format(output)) 
  22.  
  23. @app.route('/results',methods=['POST']) 
  24. def results(): 
  25.  
  26.     data = request.get_json(force=True
  27.     prediction = model.predict([np.array(list(data.values()))]) 
  28.  
  29.     output = prediction[0] 
  30.     return jsonify(output
  31.  
  32. if __name__ == "__main__"
  33.     app.run(debug=True
  34. view rawapp.py hosted with ❤ by GitHub  

最后,我使用请求模块来调用app.py中定义的APP。它显示了第三个月的返回销售额。

  1. import requests  
  2. url = 'http://localhost:5000/results'  
  3. r = requests.post(url,json={'rate':5, 'sales_in_first_month':200, 'sales_in_second_month':400})  
  4. print(r.json())  
  5. view rawrequest.py hosted with ❤ by GitHub  

结果

使用该命令运行这个Web应用程序。

  1. $ python app.py 

如何使用Flask轻松部署机器学习模型?

图4

在Web浏览器中打开http://127.0.0.1:5000/,应该会出现如下所示的GUI。

如何使用Flask轻松部署机器学习模型?

图5. 图形用户界面

结束语

相关推荐