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
Thanks so much for the nice implementation. I just have a question about parameter.
How can I calculate all trainable parameters in this model? I have tried mlpmixer.summary(), but i do not work.
The text was updated successfully, but these errors were encountered:
@tuandv2021 yes, it is custom model so we are unable to use summary(), you can calculate using shape of params of each layer and sum them up.
self.W1 = tf.Variable( initial_value=w_init(shape=(S, DS), dtype="float32"), trainable=True, )
Sorry, something went wrong.
No branches or pull requests
Thanks so much for the nice implementation.
I just have a question about parameter.
How can I calculate all trainable parameters in this model?
I have tried mlpmixer.summary(), but i do not work.
The text was updated successfully, but these errors were encountered: