idolezal commited on
Commit
a6f409a
ยท
1 Parent(s): 182bc15

Removed unnecessary calls of print()

Browse files
Files changed (2) hide show
  1. analyze_winscore.py +0 -1
  2. server.py +0 -2
analyze_winscore.py CHANGED
@@ -74,7 +74,6 @@ def create_scatter_plot_with_curve_with_variances_named(category, variance_acros
74
 
75
  # Function to get the variance for a given model name
76
  def get_variance_for_model(model_name):
77
- print(model_name)
78
  return variance_across_categories.get(model_name, 0) # Default to 0 if model not found
79
 
80
  # Get marker sizes and variances for the filtered data
 
74
 
75
  # Function to get the variance for a given model name
76
  def get_variance_for_model(model_name):
 
77
  return variance_across_categories.get(model_name, 0) # Default to 0 if model not found
78
 
79
  # Get marker sizes and variances for the filtered data
server.py CHANGED
@@ -648,8 +648,6 @@ class LeaderboardServer:
648
  r = [float(record[cat]) for cat in categories]
649
  variances[model] = np.var(r)
650
 
651
- print(variances)
652
- print(min(variances.values()))
653
  variance_across_categories = variances
654
 
655
  if category in (self.TASKS_CATEGORY_OVERALL, self.TASKS_CATEGORY_OVERALL_DETAILS):
 
648
  r = [float(record[cat]) for cat in categories]
649
  variances[model] = np.var(r)
650
 
 
 
651
  variance_across_categories = variances
652
 
653
  if category in (self.TASKS_CATEGORY_OVERALL, self.TASKS_CATEGORY_OVERALL_DETAILS):