Skip to content

Commit 1df297f

Browse files
committed
add input table
1 parent 6a66fb0 commit 1df297f

File tree

4 files changed

+3715
-11
lines changed

4 files changed

+3715
-11
lines changed

.DS_Store

0 Bytes
Binary file not shown.

app.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,10 @@ def main():
225225
with tf.Session(config=config) as sess:
226226
pred_list = convert_tab(sess, review_text)
227227
proba = pred_list
228-
return render_template("reviewform.html",review=review_text,Y=1,label=None,probability=proba)
228+
229+
html_table = review_text.decode('string_escape').split('\t')
230+
231+
return render_template("reviewform.html",review=html_table,Y=1,label=None,probability=proba)
229232
return render_template("index.html",form=form)
230233

231234

0 commit comments

Comments
 (0)