We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Could mode.pkl transfer to tensorflow model? ...
mode.pkl
OS: <your answer here> $ pip freeze | grep tensor # your output here $ pip freeze | grep jax # your output here $ python -V # your output here
# Steps to reproduce: ...
# Error logs: ...
The text was updated successfully, but these errors were encountered:
We're working on code to make this work, keeping this issue to track.
Sorry, something went wrong.
This is done, you can make a Keras layer from any Trax layer like here: https://github.com/google/trax/blob/master/trax/trax2keras.py
It will transfer weights too. So when you have a Trax model, do: model.init_from_file(...model.pkl) keras_model = TraxKerasLayer(model)
keras_model.build(...) keras_model.save(...)
No branches or pull requests
Description
Could
mode.pkl
transfer to tensorflow model?...
Environment information
For bugs: reproduction and error logs
The text was updated successfully, but these errors were encountered: