lecrapaud 0.8.1__tar.gz → 0.8.2__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.
Potentially problematic release.
This version of lecrapaud might be problematic. Click here for more details.
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/PKG-INFO +1 -1
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/feature_selection.py +3 -3
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/pyproject.toml +1 -1
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/LICENSE +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/README.md +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/__init__.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/api.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/config.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/__init__.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic/README +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic/env.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic/script.py.mako +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic/versions/2025_06_23_1748-f089dfb7e3ba_.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic/versions/2025_06_24_1216-c62251b129ed_.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic/versions/2025_06_24_1711-86457e2f333f_.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic.ini +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/__init__.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/base.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/experiment.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/feature.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/feature_selection.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/feature_selection_rank.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/model.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/model_selection.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/model_training.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/score.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/models/target.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/session.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/directories.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/experiment.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/feature_engineering.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/integrations/openai_integration.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/jobs/__init__.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/jobs/config.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/jobs/scheduler.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/jobs/tasks.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/model_selection.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/search_space.py +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/speed_tests/test-gpu-bilstm.ipynb +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/speed_tests/test-gpu-resnet.ipynb +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/speed_tests/test-gpu-transformers.ipynb +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/speed_tests/tests.ipynb +0 -0
- {lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/utils.py +0 -0
|
@@ -369,8 +369,8 @@ class FeatureSelectionEngine:
|
|
|
369
369
|
|
|
370
370
|
to_drop = []
|
|
371
371
|
|
|
372
|
-
for col in self.
|
|
373
|
-
value_counts = self.
|
|
372
|
+
for col in self.X.columns:
|
|
373
|
+
value_counts = self.X[col].value_counts(dropna=False, normalize=True)
|
|
374
374
|
if value_counts.empty:
|
|
375
375
|
to_drop.append(col)
|
|
376
376
|
elif value_counts.iloc[0] >= threshold:
|
|
@@ -380,7 +380,7 @@ class FeatureSelectionEngine:
|
|
|
380
380
|
logger.info(f"🔍 Removed {len(to_drop)} constant/almost constant columns:")
|
|
381
381
|
logger.info(to_drop)
|
|
382
382
|
|
|
383
|
-
return self.
|
|
383
|
+
return self.X.drop(columns=to_drop, errors="ignore")
|
|
384
384
|
|
|
385
385
|
def remove_correlated_features(self, corr_threshold: int, vizualize: bool = False):
|
|
386
386
|
X = self.X
|
|
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
|
{lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic/versions/2025_06_23_1748-f089dfb7e3ba_.py
RENAMED
|
File without changes
|
{lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic/versions/2025_06_24_1216-c62251b129ed_.py
RENAMED
|
File without changes
|
{lecrapaud-0.8.1 → lecrapaud-0.8.2}/lecrapaud/db/alembic/versions/2025_06_24_1711-86457e2f333f_.py
RENAMED
|
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
|
|
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
|