Commit 5894761a authored by Jon Tow's avatar Jon Tow
Browse files

Remove print statements

parent 41a8b582
......@@ -127,7 +127,6 @@ class DROP(Task):
scores = np.zeros([len(gold_bags), len(pred_bags)])
for gold_index, gold_bag in enumerate(gold_bags):
for pred_index, pred_bag in enumerate(pred_bags):
print(self._is_number_match(gold_bag, pred_bag))
if self._is_number_match(gold_bag, pred_bag):
scores[gold_index, pred_index] = self._bag_f1(gold_bag, pred_bag)
row_ind, col_ind = linear_sum_assignment(-scores)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment