From b4c318cf080c53314294acde3aacd31a88c7e230 Mon Sep 17 00:00:00 2001 From: Jeff Jennings Date: Wed, 22 Feb 2023 09:38:23 -0500 Subject: [PATCH] typo --- src/mpol/crossval.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mpol/crossval.py b/src/mpol/crossval.py index bf263fe5..cbe9e1fa 100644 --- a/src/mpol/crossval.py +++ b/src/mpol/crossval.py @@ -222,7 +222,7 @@ def run_crossval(self, dataset): loss, loss_history = trainer.train(self.model, train_set) if self._store_cv_diagnostics: - self._cv_diagnostics["loss_histories"].append(loss_history) + self._diagnostics["loss_histories"].append(loss_history) all_scores.append(trainer.test(self.model, test_set)) # average individual test scores to get the cross-val metric for chosen