-
Notifications
You must be signed in to change notification settings - Fork 687
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
[Plugin] Keras types integration #2759
Comments
Could I work on this? @cosmicBboy |
@samhita-alla ive added a PR for this |
#take |
There is another issue that is probably a duplicate of this. #2570 |
@dennisobrien, you're right. @cosmicBboy, which PR shall we close? |
@samhita-alla Ive also added support for Sequential class in this PR - i could port that over to the tensorflow folder and associated scripts once the duplicate PR in flyteorg/flytekit#1241 is merged in, if that helps. |
Flyte is an ML- and data- aware orchestrator, it would make sense to support the most popular ML frameworks as first-class citizen types in the Flyte type system.
One of the popular deep learning frameworks is keras, which would make sense to support without installing plugins and simply be activated when a user has it installed, similar to how we're handling pytorch, tensorflow (#2569, #2570, #2571), and sklearn (#2752).
We'll need to follow the conventions set in the
flytekit.extras.pytorch
module, by doing the following:__init__.py
file should handle the case where the user doesn't havekeras
installed.TypeTransformer
for the following classes:Model
: https://keras.io/api/models/model/Sequential
: https://keras.io/api/models/sequential/Resources
The text was updated successfully, but these errors were encountered: