Replies: 1 comment
-
Hey @tan-liam, if you are inside |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When initializing an nn module, I pass in a lambda function and save it as self.activation. It is possible to use this activation and use partial jit, barring the activation only from being Jitted?
JIT is usually used in the outer layer.
Is it possible to use JIT when i use a lambda function, passed in the lambda function?
e.g.
x = self.activation(x), where self.activation is a lambda function.
Beta Was this translation helpful? Give feedback.
All reactions