-
Dear all, with the new version of mxnet 2.0 coming up, I have several questions as the documentation in the official site is not always clear (or I fail to understand) if it refers to mxnet 2.0 or mxnet 1.XX (even if in the drop down menu I choose master). In particular, I have the following two questions:
In summary, if you could please provide a simple example of a custom (hybridizable) operator for conv2d + batchnorm that would explain a lot. Many thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @feevos, Thanks for asking these questions. It helps us identify gaps in our communication.
The preferred way of hybridization will be with the
Deprecation only happens in 2.0 though it's not necessary anymore in later versions of 1.x. User code with Once we get the website into a good shape, we will make sure to mention these in an upgrade guide. Let me know if you have more question. Best, |
Beta Was this translation helpful? Give feedback.
Hi @feevos,
Thanks for asking these questions. It helps us identify gaps in our communication.
The preferred way of hybridization will be with the
def forward(self, x, ...)
signature without implicit parameter passing. The hybridization will work by tracing the NDArrays directly without using the placeholderF
for python-side tracing. This enables more expressiveness in the models that can be hybridized.Deprecation only happens in 2.0 though it's not necessary anymore in later versions of 1.x. User code with
name_scope()
will continue to work on v1.x versions.Once we get the we…