MCPcopy Create free account
hub / github.com/modAL-python/modAL / __iter__

Method __iter__

modAL/models/base.py:228–230  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

226 self.X_training = None
227
228 def __iter__(self) -> Iterator[BaseLearner]:
229 for learner in self.learner_list:
230 yield learner
231
232 def __len__(self) -> int:
233 return len(self.learner_list)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected