lecrapaud 0.19.1__py3-none-any.whl → 0.19.2__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.
Potentially problematic release.
This version of lecrapaud might be problematic. Click here for more details.
- lecrapaud/feature_engineering.py +2 -0
- {lecrapaud-0.19.1.dist-info → lecrapaud-0.19.2.dist-info}/METADATA +3 -2
- {lecrapaud-0.19.1.dist-info → lecrapaud-0.19.2.dist-info}/RECORD +5 -5
- {lecrapaud-0.19.1.dist-info → lecrapaud-0.19.2.dist-info}/WHEEL +1 -1
- {lecrapaud-0.19.1.dist-info → lecrapaud-0.19.2.dist-info/licenses}/LICENSE +0 -0
lecrapaud/feature_engineering.py
CHANGED
|
@@ -629,6 +629,7 @@ class PreprocessFeature:
|
|
|
629
629
|
"""
|
|
630
630
|
|
|
631
631
|
pcas_dict = {}
|
|
632
|
+
index_saved = df.index
|
|
632
633
|
|
|
633
634
|
for pca_cross_sectional in self.pca_cross_sectional:
|
|
634
635
|
name, index_col, columns_col, value_col = (
|
|
@@ -659,6 +660,7 @@ class PreprocessFeature:
|
|
|
659
660
|
scores_df = pd.DataFrame(scores, index=pivot.index, columns=cols)
|
|
660
661
|
|
|
661
662
|
df = df.merge(scores_df.reset_index(), on=index_col, how="left")
|
|
663
|
+
df.index = index_saved
|
|
662
664
|
pcas_dict.update({name: pipe})
|
|
663
665
|
|
|
664
666
|
return df, pcas_dict
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: lecrapaud
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.2
|
|
4
4
|
Summary: Framework for machine and deep learning, with regression, classification and time series analysis
|
|
5
5
|
License: Apache License
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Author: Pierre H. Gallet
|
|
7
8
|
Requires-Python: ==3.12.*
|
|
8
9
|
Classifier: License :: Other/Proprietary License
|
|
@@ -28,7 +28,7 @@ lecrapaud/db/models/utils.py,sha256=-a-nWWmpJ2XzidIxo2COVUTrGZIPYCfBzjhcszJj_bM,
|
|
|
28
28
|
lecrapaud/db/session.py,sha256=87W5AkGRYu8b2rF5FNQ0MFC6wtGc-gGagNJQN_0vnDQ,3667
|
|
29
29
|
lecrapaud/directories.py,sha256=0LrANuDgbuneSLker60c6q2hmGnQ3mKHIztTGzTx6Gw,826
|
|
30
30
|
lecrapaud/experiment.py,sha256=1xLWjOrqAxJh9CdXOx9ppQuRFRRj0GH-xYZqg-ty9hI,2463
|
|
31
|
-
lecrapaud/feature_engineering.py,sha256=
|
|
31
|
+
lecrapaud/feature_engineering.py,sha256=aeK58ahZXFY8AoLiNM2HVBflF9V-E4dUT6XhzHpk2Cs,39265
|
|
32
32
|
lecrapaud/feature_selection.py,sha256=6ry-oVPQHbipm1XSE5YsH7AY0lQFt4CFbWiHiRs1nxg,43593
|
|
33
33
|
lecrapaud/integrations/openai_integration.py,sha256=hHLF3fk5Bps8KNbNrEL3NUFa945jwClE6LrLpuMZOd4,7459
|
|
34
34
|
lecrapaud/jobs/__init__.py,sha256=ZkrsyTOR21c_wN7RY8jPhm8jCrL1oCEtTsf3VFIlQiE,292
|
|
@@ -42,7 +42,7 @@ lecrapaud/misc/test-gpu-transformers.ipynb,sha256=k6MBSs_Um1h4PykvE-LTBcdpbWLbIF
|
|
|
42
42
|
lecrapaud/model_selection.py,sha256=z6sMU6ZGaymZOWdJehPw4yaWdzcYTABWweyH5LvCJwk,76980
|
|
43
43
|
lecrapaud/search_space.py,sha256=FCIEHZBK1pUQ4CphJuxwXY2N_BdrCelRzHsCXnNLlVI,36334
|
|
44
44
|
lecrapaud/utils.py,sha256=ATKu9pbXjYFRa2YzBYjqyLHJrzfnZ7SJrOD_qAnEBYE,8242
|
|
45
|
-
lecrapaud-0.19.
|
|
46
|
-
lecrapaud-0.19.
|
|
47
|
-
lecrapaud-0.19.
|
|
48
|
-
lecrapaud-0.19.
|
|
45
|
+
lecrapaud-0.19.2.dist-info/METADATA,sha256=cbNwzeWVppM5fGxhHgZ1ocIeJi6O6RPIxSPojjOIoio,11137
|
|
46
|
+
lecrapaud-0.19.2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
47
|
+
lecrapaud-0.19.2.dist-info/licenses/LICENSE,sha256=MImCryu0AnqhJE_uAZD-PIDKXDKb8sT7v0i1NOYeHTM,11350
|
|
48
|
+
lecrapaud-0.19.2.dist-info/RECORD,,
|
|
File without changes
|