Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions ivy/data_classes/array/experimental/layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ def interpolate(
size: Union[Sequence[int], int],
/,
*,
mode: Union[
mode:
Literal[
"linear",
"bilinear",
Expand All @@ -732,8 +732,11 @@ def interpolate(
"nearest_exact",
"tf_area",
"bicubic",
]
] = "linear",
"mitchellcubic",
"lanczos3",
"lanczos5",
"gaussian"
] = "linear",
scale_factor: Optional[Union[Sequence[int], int]] = None,
recompute_scale_factor: Optional[bool] = None,
align_corners: Optional[bool] = None,
Expand Down