zhilif commited on
Commit
3a271c3
1 Parent(s): 2dda77c
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -29,12 +29,12 @@ def baseline_load_data(model,version,metrics):
29
 
30
  # we only want specific columns and in a specific order
31
 
32
- column_names = ["Method", "Submitted By",
33
  "Model Utility", "Forget Quality",
34
  "ROUGE Real Authors", "Truth Ratio Real Authors", "Prob. Real Authors",
35
  "ROUGE Real World", "Truth Ratio Real World", "Prob. Real World",
36
  "ROUGE Retain", "Truth Ratio Retain", "Prob. Retain",
37
- "ROUGE Forget", "Truth Ratio Forget", "Prob. Forget", "Epoch"
38
  ]
39
  #based on the metrics, remove the columns that are not needed
40
  if "ROUGE" not in metrics:
 
29
 
30
  # we only want specific columns and in a specific order
31
 
32
+ column_names = ["Method", "Submitted By", "Epoch",
33
  "Model Utility", "Forget Quality",
34
  "ROUGE Real Authors", "Truth Ratio Real Authors", "Prob. Real Authors",
35
  "ROUGE Real World", "Truth Ratio Real World", "Prob. Real World",
36
  "ROUGE Retain", "Truth Ratio Retain", "Prob. Retain",
37
+ "ROUGE Forget", "Truth Ratio Forget", "Prob. Forget",
38
  ]
39
  #based on the metrics, remove the columns that are not needed
40
  if "ROUGE" not in metrics: