eric-haibin-lin opened a new issue #17220: Cannot access child blocks' 
parameter in parent block's hybrid_forward
URL: https://github.com/apache/incubator-mxnet/issues/17220
 
 
   I have a very simple model:
   ```
   class MyBlock(HybridBlock):
       def __init__(self):
           self.dense1 = nn.Dense(10)
           self.dense2 = nn.Dense(10)
   
       def hybrid_forward(self, F, x):
           # I want to concat the weights of `self.dense1` and `self.dense2`.
           # how do I do that? 
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to