functional_tensor.py 381 Bytes
Newer Older
vfdev's avatar
vfdev committed
1
2
import warnings

3
from torchvision.transforms._functional_tensor import *  # noqa
4

5
6
7
8
9
10
11
warnings.warn(
    "The torchvision.transforms.functional_tensor module is deprecated "
    "in 0.15 and will be **removed in 0.17**. Please don't rely on it. "
    "You probably just need to use APIs in "
    "torchvision.transforms.functional or in "
    "torchvision.transforms.v2.functional."
)