trailblazer-ml 0.1.0__tar.gz → 0.1.1__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: trailblazer-ml
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Uma biblioteca de AutoML Exploratório e 'Glass-Box'.
5
5
  Home-page: https://github.com/gabsalles/trailblazer-ml
6
6
  Author: Gabriel Sales
@@ -9,7 +9,7 @@ long_description = (here / "README.md").read_text(encoding="utf-8")
9
9
 
10
10
  setup(
11
11
  name="trailblazer-ml", # O nome que será usado no pip install
12
- version="0.1.0",
12
+ version="0.1.1",
13
13
  description="Uma biblioteca de AutoML Exploratório e 'Glass-Box'.",
14
14
  long_description=long_description,
15
15
  long_description_content_type="text/markdown",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: trailblazer-ml
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Uma biblioteca de AutoML Exploratório e 'Glass-Box'.
5
5
  Home-page: https://github.com/gabsalles/trailblazer-ml
6
6
  Author: Gabriel Sales
File without changes
@@ -9,6 +9,13 @@ import logging
9
9
  logger = logging.getLogger("scoutml")
10
10
 
11
11
 
12
+ class ScoutEstimator(BaseEstimator, TransformerMixin):
13
+ """Classe base para manter o histórico de decisões."""
14
+
15
+ def __init__(self):
16
+ self.history = []
17
+
18
+
12
19
  class DateFeaturizer(ScoutEstimator):
13
20
  """Detecta colunas de data e extrai features ciclicas/temporais."""
14
21
 
@@ -63,13 +70,6 @@ class DateFeaturizer(ScoutEstimator):
63
70
  return X
64
71
 
65
72
 
66
- class ScoutEstimator(BaseEstimator, TransformerMixin):
67
- """Classe base para manter o histórico de decisões."""
68
-
69
- def __init__(self):
70
- self.history = []
71
-
72
-
73
73
  class AutoCleaner(ScoutEstimator):
74
74
  """Remove colunas constantes, IDs e detecta vazamento de dados."""
75
75
 
File without changes