kostyl-toolkit 0.1.10__py3-none-any.whl → 0.1.11__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.
Files changed (33) hide show
  1. kostyl/{ml_core → ml}/clearml/config_mixin.py +1 -1
  2. kostyl/{ml_core → ml}/clearml/pulling_utils.py +6 -3
  3. kostyl/{ml_core → ml}/configs/hyperparams.py +1 -1
  4. kostyl/{ml_core → ml}/configs/training_settings.py +1 -1
  5. kostyl/{ml_core → ml}/lightning/callbacks/checkpoint.py +2 -2
  6. kostyl/{ml_core → ml}/lightning/callbacks/early_stopping.py +1 -1
  7. kostyl/{ml_core → ml}/lightning/callbacks/registry_uploading.py +3 -3
  8. kostyl/{ml_core → ml}/lightning/extenstions/custom_module.py +12 -13
  9. kostyl/{ml_core → ml}/lightning/extenstions/pretrained_model.py +12 -2
  10. kostyl/ml/lightning/loggers/__init__.py +4 -0
  11. kostyl/{ml_core → ml}/lightning/loggers/tb_logger.py +1 -1
  12. {kostyl_toolkit-0.1.10.dist-info → kostyl_toolkit-0.1.11.dist-info}/METADATA +1 -1
  13. kostyl_toolkit-0.1.11.dist-info/RECORD +36 -0
  14. kostyl/ml_core/lightning/loggers/__init__.py +0 -0
  15. kostyl_toolkit-0.1.10.dist-info/RECORD +0 -36
  16. /kostyl/{ml_core → ml}/__init__.py +0 -0
  17. /kostyl/{ml_core → ml}/clearml/__init__.py +0 -0
  18. /kostyl/{ml_core → ml}/clearml/dataset_utils.py +0 -0
  19. /kostyl/{ml_core → ml}/clearml/logging_utils.py +0 -0
  20. /kostyl/{ml_core → ml}/configs/__init__.py +0 -0
  21. /kostyl/{ml_core → ml}/configs/base_model.py +0 -0
  22. /kostyl/{ml_core → ml}/dist_utils.py +0 -0
  23. /kostyl/{ml_core → ml}/lightning/__init__.py +0 -0
  24. /kostyl/{ml_core → ml}/lightning/callbacks/__init__.py +0 -0
  25. /kostyl/{ml_core → ml}/lightning/extenstions/__init__.py +0 -0
  26. /kostyl/{ml_core → ml}/lightning/steps_estimation.py +0 -0
  27. /kostyl/{ml_core → ml}/metrics_formatting.py +0 -0
  28. /kostyl/{ml_core → ml}/params_groups.py +0 -0
  29. /kostyl/{ml_core → ml}/schedulers/__init__.py +0 -0
  30. /kostyl/{ml_core → ml}/schedulers/base.py +0 -0
  31. /kostyl/{ml_core → ml}/schedulers/composite.py +0 -0
  32. /kostyl/{ml_core → ml}/schedulers/cosine.py +0 -0
  33. {kostyl_toolkit-0.1.10.dist-info → kostyl_toolkit-0.1.11.dist-info}/WHEEL +0 -0
@@ -5,7 +5,7 @@ import clearml
5
5
  from caseconverter import pascalcase
6
6
  from caseconverter import snakecase
7
7
 
8
- from kostyl.ml_core.configs.base_model import KostylBaseModel
8
+ from kostyl.ml.configs.base_model import KostylBaseModel
9
9
  from kostyl.utils.dict_manipulations import convert_to_flat_dict
10
10
  from kostyl.utils.dict_manipulations import flattened_dict_to_nested
11
11
  from kostyl.utils.fs import load_config
@@ -3,12 +3,13 @@ from typing import cast
3
3
 
4
4
  from clearml import InputModel
5
5
  from clearml import Task
6
+ from transformers import Any
6
7
  from transformers import AutoModel
7
8
  from transformers import AutoTokenizer
8
9
  from transformers import PreTrainedModel
9
10
  from transformers import PreTrainedTokenizerBase
10
11
 
11
- from kostyl.ml_core.lightning.extenstions.pretrained_model import (
12
+ from kostyl.ml.lightning.extenstions.pretrained_model import (
12
13
  LightningCheckpointLoaderMixin,
13
14
  )
14
15
 
@@ -48,6 +49,7 @@ def get_model_from_clearml[
48
49
  model: type[TModel],
49
50
  task: Task | None = None,
50
51
  ignore_remote_overrides: bool = True,
52
+ **kwargs: Any,
51
53
  ) -> TModel:
52
54
  """
53
55
  Retrieve a pretrained model from ClearML and instantiate it using the appropriate loader.
@@ -59,6 +61,7 @@ def get_model_from_clearml[
59
61
  will be connected to this task, with remote overrides optionally ignored.
60
62
  ignore_remote_overrides: When connecting the input model to the provided task, determines whether
61
63
  remote configuration overrides should be ignored.
64
+ **kwargs: Additional keyword arguments to pass to the model loading method.
62
65
 
63
66
  Returns:
64
67
  An instantiated model loaded either from a ClearML package directory or a Lightning checkpoint.
@@ -72,13 +75,13 @@ def get_model_from_clearml[
72
75
  local_path = Path(input_model.get_local_copy(raise_on_error=True))
73
76
 
74
77
  if local_path.is_dir() and input_model._is_package():
75
- model_instance = model.from_pretrained(local_path)
78
+ model_instance = model.from_pretrained(local_path, **kwargs)
76
79
  elif local_path.suffix == ".ckpt":
77
80
  if not issubclass(model, LightningCheckpointLoaderMixin):
78
81
  raise ValueError(
79
82
  f"Model class {model.__name__} is not compatible with Lightning checkpoints."
80
83
  )
81
- model_instance = model.from_lighting_checkpoint(local_path)
84
+ model_instance = model.from_lighting_checkpoint(local_path, **kwargs)
82
85
  else:
83
86
  raise ValueError(
84
87
  f"Unsupported model format for path: {local_path}. "
@@ -2,7 +2,7 @@ from pydantic import BaseModel
2
2
  from pydantic import Field
3
3
  from pydantic import model_validator
4
4
 
5
- from kostyl.ml_core.clearml.config_mixin import ClearMLConfigMixin
5
+ from kostyl.ml.clearml.config_mixin import ClearMLConfigMixin
6
6
  from kostyl.utils.logging import setup_logger
7
7
 
8
8
 
@@ -3,7 +3,7 @@ from typing import Literal
3
3
  from pydantic import BaseModel
4
4
  from pydantic import Field
5
5
 
6
- from kostyl.ml_core.clearml.config_mixin import ClearMLConfigMixin
6
+ from kostyl.ml.clearml.config_mixin import ClearMLConfigMixin
7
7
  from kostyl.utils.logging import setup_logger
8
8
 
9
9
  from .base_model import KostylBaseModel
@@ -3,8 +3,8 @@ from shutil import rmtree
3
3
 
4
4
  from lightning.pytorch.callbacks import ModelCheckpoint
5
5
 
6
- from kostyl.ml_core.configs import CheckpointConfig
7
- from kostyl.ml_core.dist_utils import is_main_process
6
+ from kostyl.ml.configs import CheckpointConfig
7
+ from kostyl.ml.dist_utils import is_main_process
8
8
  from kostyl.utils import setup_logger
9
9
 
10
10
 
@@ -1,6 +1,6 @@
1
1
  from lightning.pytorch.callbacks import EarlyStopping
2
2
 
3
- from kostyl.ml_core.configs import EarlyStoppingConfig
3
+ from kostyl.ml.configs import EarlyStoppingConfig
4
4
 
5
5
 
6
6
  def setup_early_stopping_callback(
@@ -7,9 +7,9 @@ from lightning import Trainer
7
7
  from lightning.pytorch.callbacks import Callback
8
8
  from lightning.pytorch.callbacks import ModelCheckpoint
9
9
 
10
- from kostyl.ml_core.clearml.logging_utils import find_version_in_tags
11
- from kostyl.ml_core.clearml.logging_utils import increment_version
12
- from kostyl.ml_core.lightning import KostylLightningModule
10
+ from kostyl.ml.clearml.logging_utils import find_version_in_tags
11
+ from kostyl.ml.clearml.logging_utils import increment_version
12
+ from kostyl.ml.lightning import KostylLightningModule
13
13
  from kostyl.utils.logging import setup_logger
14
14
 
15
15
 
@@ -15,9 +15,8 @@ from torchmetrics import MetricCollection
15
15
  from transformers import PretrainedConfig
16
16
  from transformers import PreTrainedModel
17
17
 
18
- from kostyl.ml_core.configs import HyperparamsConfig
19
- from kostyl.ml_core.metrics_formatting import apply_suffix
20
- from kostyl.ml_core.schedulers.base import BaseScheduler
18
+ from kostyl.ml.metrics_formatting import apply_suffix
19
+ from kostyl.ml.schedulers.base import BaseScheduler
21
20
  from kostyl.utils import setup_logger
22
21
 
23
22
 
@@ -28,7 +27,6 @@ class KostylLightningModule(L.LightningModule):
28
27
  """Custom PyTorch Lightning Module with logging, checkpointing, and distributed training utilities."""
29
28
 
30
29
  model: PreTrainedModel | nn.Module | None
31
- hyperparams: HyperparamsConfig
32
30
 
33
31
  def get_process_group(self) -> ProcessGroup | None:
34
32
  """
@@ -70,6 +68,11 @@ class KostylLightningModule(L.LightningModule):
70
68
  return model.config # type: ignore
71
69
  return None
72
70
 
71
+ @property
72
+ def grad_clip_val(self) -> float | None:
73
+ """Returns the gradient clipping value from hyperparameters if set."""
74
+ raise NotImplementedError
75
+
73
76
  @override
74
77
  def on_save_checkpoint(self, checkpoint: dict[str, Any]) -> None:
75
78
  model = self.get_model()
@@ -93,20 +96,16 @@ class KostylLightningModule(L.LightningModule):
93
96
  def on_before_optimizer_step(self, optimizer) -> None:
94
97
  if self.model is None:
95
98
  raise ValueError("Model must be configured before optimizer step.")
96
- if not hasattr(self, "hyperparams"):
97
- logger.warning_once("cannot clip gradients, hyperparams attr missing")
98
- return
99
- if self.hyperparams.grad_clip_val is None:
99
+
100
+ grad_clip_val = self.grad_clip_val
101
+ if grad_clip_val is None:
100
102
  return
101
103
 
102
104
  if not isinstance(self.trainer.strategy, FSDPStrategy):
103
- norm = torch.nn.utils.clip_grad_norm_(
104
- self.parameters(), self.hyperparams.grad_clip_val
105
- )
105
+ norm = torch.nn.utils.clip_grad_norm_(self.parameters(), grad_clip_val)
106
106
  else:
107
107
  module: FSDP = self.trainer.strategy.model # type: ignore
108
- norm = module.clip_grad_norm_(self.hyperparams.grad_clip_val)
109
-
108
+ norm = module.clip_grad_norm_(grad_clip_val)
110
109
  self.log(
111
110
  "grad_norm",
112
111
  norm,
@@ -1,4 +1,5 @@
1
1
  from pathlib import Path
2
+ from typing import Any
2
3
  from typing import cast
3
4
 
4
5
  import torch
@@ -28,6 +29,7 @@ class LightningCheckpointLoaderMixin(PreTrainedModel):
28
29
  config_key: str = "config",
29
30
  weights_prefix: str = "model.",
30
31
  should_log_incompatible_keys: bool = True,
32
+ **kwargs: Any,
31
33
  ) -> TModelInstance:
32
34
  """
33
35
  Load a model from a Lightning checkpoint file.
@@ -48,6 +50,7 @@ class LightningCheckpointLoaderMixin(PreTrainedModel):
48
50
  weights_prefix (str, optional): Prefix to strip from state dict keys. Defaults to "model.".
49
51
  If not empty and doesn't end with ".", a "." is appended.
50
52
  should_log_incompatible_keys (bool, optional): Whether to log incompatible keys. Defaults to True.
53
+ **kwargs: Additional keyword arguments to pass to the model loading method.
51
54
 
52
55
  Returns:
53
56
  TModelInstance: The loaded model instance.
@@ -75,10 +78,17 @@ class LightningCheckpointLoaderMixin(PreTrainedModel):
75
78
  )
76
79
 
77
80
  config_cls = cast(PretrainedConfig, type(cls.config_class))
78
- config = config_cls.from_dict(checkpoint_dict[config_key])
81
+ config_dict = checkpoint_dict[config_key]
82
+ config_dict.update(kwargs)
83
+ config = config_cls.from_dict(config_dict)
84
+
85
+ kwargs_for_model = {}
86
+ for key in kwargs:
87
+ if not hasattr(config, key):
88
+ kwargs_for_model[key] = kwargs[key]
79
89
 
80
90
  with torch.device("meta"):
81
- model = cls(config)
91
+ model = cls(config, **kwargs_for_model)
82
92
 
83
93
  if "peft_config" in checkpoint_dict:
84
94
  if PeftConfig is None:
@@ -0,0 +1,4 @@
1
+ from .tb_logger import setup_tb_logger
2
+
3
+
4
+ __all__ = ["setup_tb_logger"]
@@ -3,7 +3,7 @@ from shutil import rmtree
3
3
 
4
4
  from lightning.pytorch.loggers import TensorBoardLogger
5
5
 
6
- from kostyl.ml_core.dist_utils import is_main_process
6
+ from kostyl.ml.dist_utils import is_main_process
7
7
  from kostyl.utils.logging import setup_logger
8
8
 
9
9
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: kostyl-toolkit
3
- Version: 0.1.10
3
+ Version: 0.1.11
4
4
  Summary: Kickass Orchestration System for Training, Yielding & Logging
5
5
  Requires-Dist: case-converter>=1.2.0
6
6
  Requires-Dist: loguru>=0.7.3
@@ -0,0 +1,36 @@
1
+ kostyl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ kostyl/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ kostyl/ml/clearml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ kostyl/ml/clearml/config_mixin.py,sha256=Wkz92BLL9y9aDk8qPtla6BrtZegQe7aw40G-oNkBIGs,3363
5
+ kostyl/ml/clearml/dataset_utils.py,sha256=eij_sr2KDhm8GxEbVbK8aBjPsuVvLl9-PIGGaKVgXLA,1729
6
+ kostyl/ml/clearml/logging_utils.py,sha256=GBjIIZbH_itd5sj7XpvxjkyZwxxGOpEcQ3BiWaJTyq8,1210
7
+ kostyl/ml/clearml/pulling_utils.py,sha256=FOk9rtwu9PZ4tcIexiK0LvF6MfuuCwpZxtg2oDUWlTw,3526
8
+ kostyl/ml/configs/__init__.py,sha256=pBuEhcumGBNncprqz-t_IGll2XtMmogTn9S6ZPHXCTg,997
9
+ kostyl/ml/configs/base_model.py,sha256=nOuiBIQn5pYDRRq-F4HbfWi5cn8pfaT2kM02VGoo4TE,1622
10
+ kostyl/ml/configs/hyperparams.py,sha256=UqMk2y1LISK7QMPbh3LyICjJ1DnUQhsYh1NDMR6YnR8,3006
11
+ kostyl/ml/configs/training_settings.py,sha256=JznYSXpTRraFEH7dvk4gt2Ym-XpPGlN-ALzklD7kzCw,2848
12
+ kostyl/ml/dist_utils.py,sha256=G8atjzkRbXZZiZh9rdEYBmeXqX26rJdDDovft2n6xiU,3201
13
+ kostyl/ml/lightning/__init__.py,sha256=-F3JAyq8KU1d-nACWryGu8d1CbvWbQ1rXFdeRwfE2X8,175
14
+ kostyl/ml/lightning/callbacks/__init__.py,sha256=Vd-rozY4T9Prr3IMqbliXxj6sC6y9XsovHQqRwzc2HI,297
15
+ kostyl/ml/lightning/callbacks/checkpoint.py,sha256=FooGeeUz6TtoXQglpcK16NWAmSX3fbu6wntRtK3a_Io,1936
16
+ kostyl/ml/lightning/callbacks/early_stopping.py,sha256=D5nyjktCJ9XYAf28-kgXG8jORvXLl1N3nbDQnvValPM,615
17
+ kostyl/ml/lightning/callbacks/registry_uploading.py,sha256=um-fHQUp-TSD_76rVZoNV2IMi05RFjKajGvMV7SAb6s,4691
18
+ kostyl/ml/lightning/extenstions/__init__.py,sha256=OY6QGv1agYgqqKf1xJBrxgp_i8FunVfPzYezfaRrGXU,182
19
+ kostyl/ml/lightning/extenstions/custom_module.py,sha256=N4kPObp4jqrCJscPKzJib3AkvcQQ3AHal7A1Cm3ZobA,6201
20
+ kostyl/ml/lightning/extenstions/pretrained_model.py,sha256=ZOKtrVl095cwvI43wAz-Xdzu4l0v0lHH2mfh4WXwxKQ,5059
21
+ kostyl/ml/lightning/loggers/__init__.py,sha256=e51dszaoJbuzwBkbdugmuDsPldoSO4yaRgmZUg1Bdy0,71
22
+ kostyl/ml/lightning/loggers/tb_logger.py,sha256=I0WQV3SVVIds9kHhAYnN3SXodX64jfTk7_5gH-j3uzA,932
23
+ kostyl/ml/lightning/steps_estimation.py,sha256=fTZ0IrUEZV3H6VYlx4GYn56oco56mMiB7FO9F0Z7qc4,1511
24
+ kostyl/ml/metrics_formatting.py,sha256=w0rTz61z0Um_d2pomYLvcQFcZX_C-KolZcIPRsa1efE,1421
25
+ kostyl/ml/params_groups.py,sha256=nUyw5d06Pvy9QPiYtZzLYR87xwXqJLxbHthgQH8oSCM,3583
26
+ kostyl/ml/schedulers/__init__.py,sha256=bxXbsU_WYnVbhvNNnuI7cOAh2Axz7D25TaleBTZhYfc,197
27
+ kostyl/ml/schedulers/base.py,sha256=9M2iOoOVSRojR_liPX1qo3Nn4iMXSM5ZJuAFWZTulUk,1327
28
+ kostyl/ml/schedulers/composite.py,sha256=ee4xlMDMMtjKPkbTF2ue9GTr9DuGCGjZWf11mHbi6aE,2387
29
+ kostyl/ml/schedulers/cosine.py,sha256=jufULVHn_L_ZZEc3ZTG3QCY_pc0jlAMH5Aw496T31jo,8203
30
+ kostyl/utils/__init__.py,sha256=hkpmB6c5pr4Ti5BshOROebb7cvjDZfNCw83qZ_FFKMM,240
31
+ kostyl/utils/dict_manipulations.py,sha256=e3vBicID74nYP8lHkVTQc4-IQwoJimrbFELy5uSF6Gk,1073
32
+ kostyl/utils/fs.py,sha256=gAQNIU4R_2DhwjgzOS8BOMe0gZymtY1eZwmdgOdDgqo,510
33
+ kostyl/utils/logging.py,sha256=3MvfDPArZhwakHu5nMlp_LpOsWg0E0SP26y41clsBtA,5232
34
+ kostyl_toolkit-0.1.11.dist-info/WHEEL,sha256=3id4o64OvRm9dUknh3mMJNcfoTRK08ua5cU6DFyVy-4,79
35
+ kostyl_toolkit-0.1.11.dist-info/METADATA,sha256=ImcjKFPWoQznLjTGCKjcvmf_Nn2F6NXNWzfQNPXPFDU,4269
36
+ kostyl_toolkit-0.1.11.dist-info/RECORD,,
File without changes
@@ -1,36 +0,0 @@
1
- kostyl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- kostyl/ml_core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- kostyl/ml_core/clearml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- kostyl/ml_core/clearml/config_mixin.py,sha256=sN24RPs8kWW1iXpIr_6w1bfEZZSXIV_i_RXypqzjwXg,3368
5
- kostyl/ml_core/clearml/dataset_utils.py,sha256=eij_sr2KDhm8GxEbVbK8aBjPsuVvLl9-PIGGaKVgXLA,1729
6
- kostyl/ml_core/clearml/logging_utils.py,sha256=GBjIIZbH_itd5sj7XpvxjkyZwxxGOpEcQ3BiWaJTyq8,1210
7
- kostyl/ml_core/clearml/pulling_utils.py,sha256=mXL17sQxRaSLJKmLIjm7hCsZ7OjzLIKxrtebowBOtvQ,3379
8
- kostyl/ml_core/configs/__init__.py,sha256=pBuEhcumGBNncprqz-t_IGll2XtMmogTn9S6ZPHXCTg,997
9
- kostyl/ml_core/configs/base_model.py,sha256=nOuiBIQn5pYDRRq-F4HbfWi5cn8pfaT2kM02VGoo4TE,1622
10
- kostyl/ml_core/configs/hyperparams.py,sha256=u-7FIM-cD3nz9Sycuvg7r0Vdiu4pduafiCoAxq8JK0s,3011
11
- kostyl/ml_core/configs/training_settings.py,sha256=35EgIfqfoLAXtxwJ6XiWOalOcHDxrlsoBgjdtLbUI5k,2853
12
- kostyl/ml_core/dist_utils.py,sha256=G8atjzkRbXZZiZh9rdEYBmeXqX26rJdDDovft2n6xiU,3201
13
- kostyl/ml_core/lightning/__init__.py,sha256=-F3JAyq8KU1d-nACWryGu8d1CbvWbQ1rXFdeRwfE2X8,175
14
- kostyl/ml_core/lightning/callbacks/__init__.py,sha256=Vd-rozY4T9Prr3IMqbliXxj6sC6y9XsovHQqRwzc2HI,297
15
- kostyl/ml_core/lightning/callbacks/checkpoint.py,sha256=RgkNNmsbAz9fdMYGlEgn9Qs_DF8LiuY7Bp1Hu4ZW98s,1946
16
- kostyl/ml_core/lightning/callbacks/early_stopping.py,sha256=nEj3OkMNJkpQzR6pt0Z0kvHDND6OWzWHw_aCZRmGE1s,620
17
- kostyl/ml_core/lightning/callbacks/registry_uploading.py,sha256=1aqT38FVOMQo4JphXcyjyK3ZY6A6HF1JBOsKqYNXar8,4706
18
- kostyl/ml_core/lightning/extenstions/__init__.py,sha256=OY6QGv1agYgqqKf1xJBrxgp_i8FunVfPzYezfaRrGXU,182
19
- kostyl/ml_core/lightning/extenstions/custom_module.py,sha256=M8kAvKSlrHT2-MPmzRUfbLhNOOMQzhwnN8FazZzkYg0,6311
20
- kostyl/ml_core/lightning/extenstions/pretrained_model.py,sha256=4Ng4xjt3KFWKT0UThC_9vM5Y95AhBdzrU4y4We1gemc,4685
21
- kostyl/ml_core/lightning/loggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- kostyl/ml_core/lightning/loggers/tb_logger.py,sha256=Zh9n-lLu-bXMld-FIUO3lJfCyDf0IQFhS3JVShDJmvg,937
23
- kostyl/ml_core/lightning/steps_estimation.py,sha256=fTZ0IrUEZV3H6VYlx4GYn56oco56mMiB7FO9F0Z7qc4,1511
24
- kostyl/ml_core/metrics_formatting.py,sha256=w0rTz61z0Um_d2pomYLvcQFcZX_C-KolZcIPRsa1efE,1421
25
- kostyl/ml_core/params_groups.py,sha256=nUyw5d06Pvy9QPiYtZzLYR87xwXqJLxbHthgQH8oSCM,3583
26
- kostyl/ml_core/schedulers/__init__.py,sha256=bxXbsU_WYnVbhvNNnuI7cOAh2Axz7D25TaleBTZhYfc,197
27
- kostyl/ml_core/schedulers/base.py,sha256=9M2iOoOVSRojR_liPX1qo3Nn4iMXSM5ZJuAFWZTulUk,1327
28
- kostyl/ml_core/schedulers/composite.py,sha256=ee4xlMDMMtjKPkbTF2ue9GTr9DuGCGjZWf11mHbi6aE,2387
29
- kostyl/ml_core/schedulers/cosine.py,sha256=jufULVHn_L_ZZEc3ZTG3QCY_pc0jlAMH5Aw496T31jo,8203
30
- kostyl/utils/__init__.py,sha256=hkpmB6c5pr4Ti5BshOROebb7cvjDZfNCw83qZ_FFKMM,240
31
- kostyl/utils/dict_manipulations.py,sha256=e3vBicID74nYP8lHkVTQc4-IQwoJimrbFELy5uSF6Gk,1073
32
- kostyl/utils/fs.py,sha256=gAQNIU4R_2DhwjgzOS8BOMe0gZymtY1eZwmdgOdDgqo,510
33
- kostyl/utils/logging.py,sha256=3MvfDPArZhwakHu5nMlp_LpOsWg0E0SP26y41clsBtA,5232
34
- kostyl_toolkit-0.1.10.dist-info/WHEEL,sha256=3id4o64OvRm9dUknh3mMJNcfoTRK08ua5cU6DFyVy-4,79
35
- kostyl_toolkit-0.1.10.dist-info/METADATA,sha256=WRGWDJWvhk-VsChASkzG5vlzPLj89nv37gOVh9_FgPo,4269
36
- kostyl_toolkit-0.1.10.dist-info/RECORD,,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes