“Как подключить модель ML к веб -приложению” Ответ

Как подключить модель ML к веб -приложению

#import libraries
import numpy as np
from flask import Flask, render_template,request
import pickle#Initialize the flask App
app = Flask(__name__)
model = pickle.load(open('model.pkl', 'rb'))
Xenophobic Xenomorph

Как подключить модель ML к веб -приложению

if __name__ == "__main__":
    app.run(debug=True)
Xenophobic Xenomorph

Как подключить модель ML к веб -приложению

# How To add ML to web. Go from down to up. Please
Xenophobic Xenomorph

Как подключить модель ML к веб -приложению

#default page of our web-app
@app.route('/')
def home():
    return render_template('index.html')
Xenophobic Xenomorph

Как подключить модель ML к веб -приложению

#To use the predict button in our web-app
@app.route('/predict',methods=['POST'])
def predict():
    #For rendering results on HTML GUI
    int_features = [float(x) for x in request.form.values()]
    final_features = [np.array(int_features)]
    prediction = model.predict(final_features)
    output = round(prediction[0], 2) 
    return render_template('index.html', prediction_text='CO2    Emission of the vehicle is :{}'.format(output))
Xenophobic Xenomorph

Ответы похожие на “Как подключить модель ML к веб -приложению”

Вопросы похожие на “Как подключить модель ML к веб -приложению”

Больше похожих ответов на “Как подключить модель ML к веб -приложению” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования