autogluon.core 1.2.1b20250116__py3-none-any.whl → 1.2.1b20250130__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,7 +26,7 @@ class AbstractLearner:
26
26
  self.path_context_og: str = path_context # Saves path_context used to create the original context of the learner to enable sub-fits.
27
27
  self.is_trainer_present: bool = False
28
28
  self.trainer: Optional[AbstractTrainer] = None
29
- self.trainer_type: Optional[Type] = None
29
+ self.trainer_type: Type
30
30
  self.trainer_path: Optional[str] = None
31
31
  self.reset_paths: bool = False
32
32
 
@@ -1 +1,3 @@
1
1
  from .abstract_trainer import AbstractTrainer
2
+
3
+ __all__ = ["AbstractTrainer"]