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.
- autogluon/core/learner/abstract_learner.py +1 -1
- autogluon/core/trainer/__init__.py +2 -0
- autogluon/core/trainer/abstract_trainer.py +380 -289
- autogluon/core/version.py +1 -1
- {autogluon.core-1.2.1b20250116.dist-info → autogluon.core-1.2.1b20250130.dist-info}/METADATA +8 -6
- {autogluon.core-1.2.1b20250116.dist-info → autogluon.core-1.2.1b20250130.dist-info}/RECORD +13 -13
- /autogluon.core-1.2.1b20250116-py3.8-nspkg.pth → /autogluon.core-1.2.1b20250130-py3.9-nspkg.pth +0 -0
- {autogluon.core-1.2.1b20250116.dist-info → autogluon.core-1.2.1b20250130.dist-info}/LICENSE +0 -0
- {autogluon.core-1.2.1b20250116.dist-info → autogluon.core-1.2.1b20250130.dist-info}/NOTICE +0 -0
- {autogluon.core-1.2.1b20250116.dist-info → autogluon.core-1.2.1b20250130.dist-info}/WHEEL +0 -0
- {autogluon.core-1.2.1b20250116.dist-info → autogluon.core-1.2.1b20250130.dist-info}/namespace_packages.txt +0 -0
- {autogluon.core-1.2.1b20250116.dist-info → autogluon.core-1.2.1b20250130.dist-info}/top_level.txt +0 -0
- {autogluon.core-1.2.1b20250116.dist-info → autogluon.core-1.2.1b20250130.dist-info}/zip-safe +0 -0
@@ -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:
|
29
|
+
self.trainer_type: Type
|
30
30
|
self.trainer_path: Optional[str] = None
|
31
31
|
self.reset_paths: bool = False
|
32
32
|
|