nlpblogs commited on
Commit
28ad833
·
verified ·
1 Parent(s): 6b409e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -79,7 +79,7 @@ if csv is not None:
79
  df2 = df1.sum(axis=1)
80
  df3 = df2.to_string()
81
  text = re.sub(r'[^\w\s]','',df3)
82
- st.write(df3)
83
 
84
 
85
 
@@ -91,7 +91,7 @@ if csv is not None:
91
 
92
  df = pd.DataFrame(tokens)
93
  df = df.drop(df[df['word'] == '##s'].index)
94
- st.dataframe(df)
95
 
96
 
97
 
 
79
  df2 = df1.sum(axis=1)
80
  df3 = df2.to_string()
81
  text = re.sub(r'[^\w\s]','',df3)
82
+
83
 
84
 
85
 
 
91
 
92
  df = pd.DataFrame(tokens)
93
  df = df.drop(df[df['word'] == '##s'].index)
94
+
95
 
96
 
97