-
Notifications
You must be signed in to change notification settings - Fork 47
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
ENH: accept tf.data.Dataset inputs #166
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #166 +/- ##
=======================================
Coverage 99.55% 99.55%
=======================================
Files 6 6
Lines 672 679 +7
=======================================
+ Hits 669 676 +7
Misses 3 3
Continue to review full report at Codecov.
|
📝 Docs preview for commit 79620cd at: https://www.adriangb.com/scikeras/refs/pull/166/merge/ |
Partially addresses #160 by enabling direct tf.data.Dataset inputs.
This mainly enables the use case where a user has an existing Dataset and Model and would like to use GridSearch or something on it, but most of the rest of the SciKeras and Sklearn features will be unavailable including:
And this requires using
BaseWrapper
directly, or alternatively subclassingKerasClassifier
orKerasRegressor
to disable the transformers.