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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -274,8 +274,12 @@ def get_all_df_i2v(selected_columns, dir=I2V_DIR):
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) + '%'
281
  return df
 
274
 
275
  def convert_scores_to_percentage(df):
276
  # 对DataFrame中的每一列(除了'name'列)进行操作
277
+
278
+ if 'Source' in df.columns:
279
+ skip_col =2
280
+ else:
281
+ skip_col =1
282
+ for column in df.columns[skip_col:]: # 假设第一列是'name'
283
  df[column] = round(df[column] * 100,2) # 将分数转换为百分数
284
  df[column] = df[column].astype(str) + '%'
285
  return df