ynhe commited on
Commit
7de1c61
1 Parent(s): c2f4082

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -274,6 +274,7 @@ def get_all_df_i2v(selected_columns, dir=I2V_DIR):
274
 
275
  def convert_scores_to_percentage(df):
276
  # 对DataFrame中的每一列(除了'name'列)进行操作
 
277
  for column in df.columns[1:-1]: # 假设第一列是'name'
278
  df[column] = round(df[column] * 100,2) # 将分数转换为百分数
279
  df[column] = df[column].astype(str) + '%'
 
274
 
275
  def convert_scores_to_percentage(df):
276
  # 对DataFrame中的每一列(除了'name'列)进行操作
277
+ print(df.columns)
278
  for column in df.columns[1:-1]: # 假设第一列是'name'
279
  df[column] = round(df[column] * 100,2) # 将分数转换为百分数
280
  df[column] = df[column].astype(str) + '%'