(self)
| 743 | |
| 744 | class TestDropout(unittest.TestCase): |
| 745 | def setUp(self): |
| 746 | self.skorch_classifier = NeuralNetClassifier(Torch_Model, |
| 747 | criterion=torch.nn.CrossEntropyLoss, |
| 748 | optimizer=torch.optim.Adam, |
| 749 | train_split=None, |
| 750 | verbose=1) |
| 751 | |
| 752 | def test_mc_dropout_bald(self): |
| 753 | learner = modAL.models.learners.DeepActiveLearner( |
nothing calls this directly
no outgoing calls
no test coverage detected