forked from ibis-project/ibis-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rename the
ibisml
package to ibis_ml
- Loading branch information
Showing
27 changed files
with
104 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from importlib.metadata import version | ||
|
||
__version__ = version("ibisml") | ||
__version__ = version("ibis_ml") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
from ibis_ml.steps.common import Cast, Drop, Mutate, MutateAt | ||
from ibis_ml.steps.discretize import DiscretizeKBins | ||
from ibis_ml.steps.encode import ( | ||
CategoricalEncode, | ||
CountEncode, | ||
OneHotEncode, | ||
TargetEncode, | ||
) | ||
from ibis_ml.steps.feature_engineering import PolynomialFeatures | ||
from ibis_ml.steps.feature_selection import ZeroVariance | ||
from ibis_ml.steps.impute import FillNA, ImputeMean, ImputeMedian, ImputeMode | ||
from ibis_ml.steps.standardize import ScaleMinMax, ScaleStandard | ||
from ibis_ml.steps.temporal import ExpandDate, ExpandDateTime, ExpandTime | ||
|
||
__all__ = ( | ||
"Cast", | ||
"CategoricalEncode", | ||
"CountEncode", | ||
"DiscretizeKBins", | ||
"Drop", | ||
"ExpandDate", | ||
"ExpandDateTime", | ||
"ExpandTime", | ||
"FillNA", | ||
"ImputeMean", | ||
"ImputeMedian", | ||
"ImputeMode", | ||
"Mutate", | ||
"MutateAt", | ||
"OneHotEncode", | ||
"PolynomialFeatures", | ||
"ScaleMinMax", | ||
"ScaleStandard", | ||
"TargetEncode", | ||
"ZeroVariance", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.