We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f79b2fd commit 877c0b2Copy full SHA for 877c0b2
tensorflow_addons/image/dense_image_warp.py
@@ -247,7 +247,7 @@ def dense_image_warp(
247
248
@tf.function(experimental_implements="addons:DenseImageWarp")
249
def dense_image_warp_annotated(
250
- image: types.TensorLike, flow: types.TensorLike, name: Optional[str] = None
+ image: types.TensorLike, flow: types.TensorLike
251
) -> tf.Tensor:
252
"""Similar to dense_image_warp but annotated with experimental_implements.
253
@@ -260,4 +260,4 @@ def dense_image_warp_annotated(
260
However, with the annotation, this function cannot be used with backprop
261
under `tf.GradientTape` objects.
262
"""
263
- return dense_image_warp(image, flow, name)
+ return dense_image_warp(image, flow)
0 commit comments