lecrapaud 0.14.6__tar.gz → 0.14.8__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.14.6 → lecrapaud-0.14.8}/PKG-INFO +1 -1
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/feature_selection.py +2 -1
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/feature_engineering.py +1 -1
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/pyproject.toml +1 -1
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/LICENSE +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/README.md +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/__init__.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/api.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/config.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/__init__.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/README +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/env.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/script.py.mako +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/versions/2025_06_23_1748-f089dfb7e3ba_.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/versions/2025_06_24_1216-c62251b129ed_.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/versions/2025_06_24_1711-86457e2f333f_.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/versions/2025_06_25_1759-72aa496ca65b_.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic.ini +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/__init__.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/base.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/experiment.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/feature.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/feature_selection_rank.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/model.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/model_selection.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/model_training.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/score.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/target.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/models/utils.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/session.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/directories.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/experiment.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/feature_selection.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/integrations/openai_integration.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/jobs/__init__.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/jobs/config.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/jobs/scheduler.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/jobs/tasks.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/misc/tabpfn_tests.ipynb +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/misc/test-gpu-bilstm.ipynb +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/misc/test-gpu-resnet.ipynb +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/misc/test-gpu-transformers.ipynb +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/model_selection.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/search_space.py +0 -0
- {lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/utils.py +0 -0
|
@@ -27,6 +27,7 @@ from collections.abc import Iterable
|
|
|
27
27
|
from lecrapaud.db.session import get_db
|
|
28
28
|
from lecrapaud.db.models.base import Base, with_db
|
|
29
29
|
from lecrapaud.db.models.utils import create_association_table
|
|
30
|
+
from lecrapaud.config import LECRAPAUD_TABLE_PREFIX
|
|
30
31
|
|
|
31
32
|
# jointures
|
|
32
33
|
lecrapaud_feature_selection_association = create_association_table(
|
|
@@ -34,7 +35,7 @@ lecrapaud_feature_selection_association = create_association_table(
|
|
|
34
35
|
table1="feature_selections",
|
|
35
36
|
column1="feature_selection",
|
|
36
37
|
table2="features",
|
|
37
|
-
column2="feature"
|
|
38
|
+
column2="feature",
|
|
38
39
|
)
|
|
39
40
|
|
|
40
41
|
|
|
@@ -658,7 +658,7 @@ class PreprocessFeature:
|
|
|
658
658
|
X_transformed = pd.DataFrame(transformed, columns=column_names, index=df.index)
|
|
659
659
|
|
|
660
660
|
# Try to convert columns to best possible dtypes
|
|
661
|
-
X_transformed = X_transformed.
|
|
661
|
+
X_transformed = X_transformed.convert_dtypes()
|
|
662
662
|
|
|
663
663
|
# Insert features in db
|
|
664
664
|
if save_in_db:
|
|
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.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/versions/2025_06_23_1748-f089dfb7e3ba_.py
RENAMED
|
File without changes
|
{lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/versions/2025_06_24_1216-c62251b129ed_.py
RENAMED
|
File without changes
|
{lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/versions/2025_06_24_1711-86457e2f333f_.py
RENAMED
|
File without changes
|
{lecrapaud-0.14.6 → lecrapaud-0.14.8}/lecrapaud/db/alembic/versions/2025_06_25_1759-72aa496ca65b_.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
|