Spaces:
Runtime error
Runtime error
Commit
·
fd7311e
1
Parent(s):
08a6457
Update app.py
Browse files
app.py
CHANGED
@@ -76,8 +76,13 @@ if sidebar_selectbox == "Bulk upload and mark":
|
|
76 |
df = pd.read_csv(data_file)
|
77 |
|
78 |
# Append new column to dataframe
|
79 |
-
|
80 |
|
81 |
-
|
82 |
|
83 |
-
|
|
|
|
|
|
|
|
|
|
|
|
76 |
df = pd.read_csv(data_file)
|
77 |
|
78 |
# Append new column to dataframe
|
79 |
+
total_rows = df.count + 1
|
80 |
|
81 |
+
similarity_scores = []
|
82 |
|
83 |
+
# similarity_scores.append()
|
84 |
+
|
85 |
+
# df['Similarity'] = similarity_scores
|
86 |
+
|
87 |
+
st.dataframe(df)
|
88 |
+
st.write(total_rows)
|