Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,3 @@
|
|
1 |
-
#!/usr/bin/env python3
|
2 |
-
# -*- coding: utf-8 -*-
|
3 |
-
"""
|
4 |
-
Created on Fri Jan 14 16:29:08 2022
|
5 |
-
|
6 |
-
@author: xp
|
7 |
-
"""
|
8 |
-
|
9 |
import streamlit as st
|
10 |
|
11 |
from transformers import pipeline
|
@@ -32,7 +24,8 @@ if text:
|
|
32 |
result = nlp(text+' '+nlp.tokenizer.mask_token)
|
33 |
data_load_state.text('')
|
34 |
for index, r in enumerate(result):
|
|
|
35 |
if r['sequence'].lower().strip() in history_keyword_text.lower().strip():
|
36 |
-
|
37 |
result[index]['score']*=0.10
|
38 |
st.table(result)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
from transformers import pipeline
|
|
|
24 |
result = nlp(text+' '+nlp.tokenizer.mask_token)
|
25 |
data_load_state.text('')
|
26 |
for index, r in enumerate(result):
|
27 |
+
print(1)
|
28 |
if r['sequence'].lower().strip() in history_keyword_text.lower().strip():
|
29 |
+
st.caption(r)
|
30 |
result[index]['score']*=0.10
|
31 |
st.table(result)
|