“Comment connecter un modèle ML à une application Web” Réponses codées

Comment connecter un modèle ML à une application Web

#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

Comment connecter un modèle ML à une application Web

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

Comment connecter un modèle ML à une application Web

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

Comment connecter un modèle ML à une application Web

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

Comment connecter un modèle ML à une application Web

#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

Réponses similaires à “Comment connecter un modèle ML à une application Web”

Questions similaires à “Comment connecter un modèle ML à une application Web”

Plus de réponses similaires à “Comment connecter un modèle ML à une application Web” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code