-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
31 lines (24 loc) · 876 Bytes
/
app.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
from flask import Flask,render_template,url_for,request
import joblib
import pandas as pd
import pickle
from sklearn.feature_extraction.text import CountVectorizer
from sklearn.naive_bayes import MultinomialNB
from sklearn.externals import joblib
import requests
from sklearn.feature_extraction.text import CountVectorizer
from gensim.summarization import summarize
app=Flask(__name__)
from text_sum import text_sumarize
@app.route("/")
def home():
return render_template("home.html")
@app.route('/predict',methods=['GET','POST'])
def predict():
if request.method=="POST":
message=request.form["message"]
final_sumary=text_sumarize(message)
#final_sumary=summarize(message)
return render_template('result.html',ctext=message,final_sumary=final_sumary)
if __name__ == '__main__':
app.run(debug=True)