Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -145,6 +145,7 @@ def main():
|
|
| 145 |
hide_index=True,
|
| 146 |
height=len(df) * 37,
|
| 147 |
)
|
|
|
|
| 148 |
selected_models = st.multiselect('Select models to compare', df['Model'].unique())
|
| 149 |
comparison_df = df[df['Model'].isin(selected_models)]
|
| 150 |
st.dataframe(comparison_df)
|
|
|
|
| 145 |
hide_index=True,
|
| 146 |
height=len(df) * 37,
|
| 147 |
)
|
| 148 |
+
|
| 149 |
selected_models = st.multiselect('Select models to compare', df['Model'].unique())
|
| 150 |
comparison_df = df[df['Model'].isin(selected_models)]
|
| 151 |
st.dataframe(comparison_df)
|