We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 365f11f commit 3627074Copy full SHA for 3627074
README.md
@@ -1149,9 +1149,11 @@ ret = tf_fn(x1)
1149
#### `ivy.transpile` will lazily transpile if a module (library) is provided
1150
1151
``` python
1152
+import ivy
1153
import kornia
1154
+import tensorflow as tf
1155
-x2 = torch.rand(5, 3, 4, 4)
1156
+x2 = tf.random.normal((5, 3, 4, 4))
1157
1158
# Module is provided -> transpilation happens lazily
1159
tf_kornia = ivy.transpile(kornia, source="torch", target="tensorflow")
0 commit comments