XThomasBU commited on
Commit
a9fea89
·
1 Parent(s): 43c1b0d
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -185,7 +185,7 @@ def pairwise_agreement(df: pd.DataFrame, model_col: str, human_col: str):
185
  f"{human_col}_B": hj,
186
  "model_order": model_order,
187
  "human_order": human_order,
188
- "agree": is_agree,
189
  })
190
 
191
  acc = (agree / total) if total > 0 else np.nan
@@ -252,7 +252,7 @@ def cross_model_pairwise(df: pd.DataFrame, model_col: str, human_col: str):
252
  f"{human_col}_B": hj,
253
  "model_order": model_order,
254
  "human_order": human_order,
255
- "agree": is_agree,
256
  })
257
 
258
  acc = (agree / total) if total > 0 else np.nan
 
185
  f"{human_col}_B": hj,
186
  "model_order": model_order,
187
  "human_order": human_order,
188
+ # "agree": is_agree,
189
  })
190
 
191
  acc = (agree / total) if total > 0 else np.nan
 
252
  f"{human_col}_B": hj,
253
  "model_order": model_order,
254
  "human_order": human_order,
255
+ # "agree": is_agree,
256
  })
257
 
258
  acc = (agree / total) if total > 0 else np.nan