qrsforever opened a new issue #9104:
URL: https://github.com/apache/tvm/issues/9104


   
https://github.com/apache/tvm/blob/d3d7e8eb6c201506dc706a055e16eed189dcdb0b/python/tvm/relay/frontend/tensorflow_ops.py#L1959-L1970
   
   
   Code Example: 
   
   ```python
   model3d = tf.keras.models.Sequential([
       layers.Conv3D(
           512, 3, padding='same',
           dilation_rate=(3, 1, 1),
           kernel_regularizer=regularizers.l2(1e-6),
           kernel_initializer='he_normal'),
       layers.BatchNormalization(),
       layers.ReLU()
   ])
   
   inputs3d = np.random.randn(1, 64, 7, 7, 1024).astype(np.float32)
   outputs3d = model3d(inputs3d)
   ```
   
   Netron Graph:
   
   ![Screenshot from 2021-09-24 
21-49-02](https://user-images.githubusercontent.com/1296332/134686552-63da50ee-b38a-4c92-8c8b-13c9d21f2b6c.png)
   
   


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to