-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
34 lines (29 loc) · 942 Bytes
/
app.py
File metadata and controls
34 lines (29 loc) · 942 Bytes
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
import numpy as np
from flask import Flask, request, jsonify, render_template
import pickle
import string
import re
app = Flask(__name__)
model = pickle.load(open('model.pkl', 'rb'))
@app.route('/')
def home():
return render_template('index.html')
@app.route('/predict',methods=['POST'])
def predict():
'''
For rendering results on HTML GUI
'''
translate_table = dict((ord(char),None)for char in string.punctuation)
int_features = [x for x in request.form.values()]
text =' '.join([str(item)for item in int_features])
text = " ".join(text.split())
text = text.lower()
text = re.sub(r"\d+","",text)
text = text.translate(translate_table)
pred = model.predict([text])
prob = model.predict_proba([text])
output = pred
output = ' '.join(output)
return render_template('index.html', prediction_text="The language is : "+output)
if __name__ == "__main__":
app.run(debug=True)