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:  -- 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]
