Skip to content

Commit

Permalink
fix _get_data for the BalancingLearner (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
basnijholt authored Jan 29, 2019
1 parent 21a836e commit 0e0674d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adaptive/learner/balancing_learner.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def load(self, fname, compress=True):
l.load(fname(l), compress=compress)

def _get_data(self):
return [l._get_data() for l in learner.learners]
return [l._get_data() for l in self.learners]

def _set_data(self, data):
for l, _data in zip(self.learners, data):
Expand Down

0 comments on commit 0e0674d

Please sign in to comment.