Commit
·
6ba03de
1
Parent(s):
6f5b41f
fix typo
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
|
|
3 |
import pandas as pd
|
4 |
|
5 |
# Load the uc_result.csv file
|
6 |
-
uc_result_df = pd.read_csv('uc_result.csv')
|
7 |
|
8 |
# Convert percentage columns to float for sorting
|
9 |
percentage_columns = [col for col in uc_result_df.columns if uc_result_df[col].dtype == 'object' and '%' in uc_result_df[col].iloc[0]]
|
|
|
3 |
import pandas as pd
|
4 |
|
5 |
# Load the uc_result.csv file
|
6 |
+
uc_result_df = pd.read_csv('assets/uc_result.csv')
|
7 |
|
8 |
# Convert percentage columns to float for sorting
|
9 |
percentage_columns = [col for col in uc_result_df.columns if uc_result_df[col].dtype == 'object' and '%' in uc_result_df[col].iloc[0]]
|