Commit
·
a347f8f
1
Parent(s):
f73dbf6
up
Browse files
app.py
CHANGED
@@ -116,7 +116,10 @@ COLUMN_NAMES = {
|
|
116 |
"switch-board": "swbd",
|
117 |
}
|
118 |
|
119 |
-
table = all_results
|
|
|
|
|
|
|
120 |
table = table.rename(columns=COLUMN_NAMES)
|
121 |
|
122 |
# Streamlit
|
@@ -129,7 +132,8 @@ st.markdown(
|
|
129 |
all non-optional datasets: {', '.join(COLUMN_NAMES.values())}."""
|
130 |
)
|
131 |
|
132 |
-
st.table(table)
|
|
|
133 |
|
134 |
# *Sanchit Gandhi, Patrick Von Platen, and, Alexander M Rush*
|
135 |
st.markdown(
|
|
|
116 |
"switch-board": "swbd",
|
117 |
}
|
118 |
|
119 |
+
table = all_results
|
120 |
+
|
121 |
+
tabel = table.select_dtypes(exclude=['object', 'string']) * 100
|
122 |
+
table = table.round(2)
|
123 |
table = table.rename(columns=COLUMN_NAMES)
|
124 |
|
125 |
# Streamlit
|
|
|
132 |
all non-optional datasets: {', '.join(COLUMN_NAMES.values())}."""
|
133 |
)
|
134 |
|
135 |
+
#st.table(table)
|
136 |
+
table
|
137 |
|
138 |
# *Sanchit Gandhi, Patrick Von Platen, and, Alexander M Rush*
|
139 |
st.markdown(
|