-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Call predict
of classical ML models with TabularDataset
#694
Labels
Comments
lars-reimann
added a commit
that referenced
this issue
May 11, 2024
Closes #694 Closes #699 Closes #714 Closes #748 ### Summary of Changes * Replace old implementation of tabular containers * New, more efficient implementation of metrics * Standalone package for metrics * New regression metrics * Abstract base class for classifiers & regressors * Introspection methods to get information about features and target of supervised models * Rename `LogisticRegressionClassifier` to `LogisticClassifier` (shorter + does not show up when searching for regression) * Rename `LinearRegressionRegressor` to `LinearRegressor` (shorter) * Rename `SupportVectorMachineClassifier` to `SupportVectorClassifier` (a little less precise, but still unambiguous and shorter) * Rename `SupportVectorMachineRegressor` to `SupportVectorRegressor` (ditto)
lars-reimann
pushed a commit
that referenced
this issue
May 15, 2024
## [0.25.0](v0.24.0...v0.25.0) (2024-05-15) ### Features * major API redesign (WIP) ([#752](#752)) ([8e781f9](8e781f9)), closes [#694](#694) [#699](#699) [#714](#714) [#748](#748) * move NN converters and layers to separate packages ([#759](#759)) ([c6a4073](c6a4073)) * remove operations without replacement from tabular containers ([#747](#747)) ([0e5a54b](0e5a54b)) * specify partial order in label encoder ([#763](#763)) ([6fbe537](6fbe537)), closes [#639](#639) ### Bug Fixes * Conversion of tabular dataset to tensors ([#757](#757)) ([9e40b65](9e40b65)) * fixed devices with new polars implementation ([#756](#756)) ([e72339e](e72339e)) ### Performance Improvements * implement one hot encoder and imputer using polars ([#768](#768)) ([e993c17](e993c17))
🎉 This issue has been resolved in version 0.25.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem?
Right now, a
TabularDataset
must first be converted to aTable
before being passed topredict
. This is unnecessary.Desired solution
TabularDataset
to predict.toTable
, if given aTabularDataset
.Possible alternatives (optional)
No response
Screenshots (optional)
No response
Additional Context (optional)
No response
The text was updated successfully, but these errors were encountered: