nlpblogs commited on
Commit
ef005be
·
verified ·
1 Parent(s): 1b491fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -43,7 +43,10 @@ for uploaded_file in uploaded_files:
43
  result1 = pd.concat(frames)
44
  st.dataframe(result1)
45
 
46
- result = result1['Text'].tolist()
 
 
 
47
  st.dataframe(result)
48
 
49
  model = GLiNER.from_pretrained("urchade/gliner_base")
 
43
  result1 = pd.concat(frames)
44
  st.dataframe(result1)
45
 
46
+ result2 = result1.values.tolist()
47
+ st.dataframe(result2)
48
+
49
+ result = result2.reset_index()
50
  st.dataframe(result)
51
 
52
  model = GLiNER.from_pretrained("urchade/gliner_base")