Shortcuts

Lambda

class torchvision.transforms.v2.Lambda(lambd: Callable[[Any], Any], *types: Type)[source]

[BETA] Apply a user-defined function as a transform.

Warning

The Lambda transform is in Beta stage, and while we do not expect major breaking changes, some APIs may still change according to user feedback. Please submit any feedback you may have in this issue: https://github.com/pytorch/vision/issues/6753, and you can also check out https://github.com/pytorch/vision/issues/7319 to learn more about the APIs that we suspect might involve future changes.

This transform does not support torchscript.

Parameters:

lambd (function) – Lambda/function to be used for transform.

extra_repr() str[source]

Set the extra representation of the module

To print customized extra information, you should re-implement this method in your own modules. Both single-line and multi-line strings are acceptable.

Docs

Access comprehensive developer documentation for PyTorch

View Docs

Tutorials

Get in-depth tutorials for beginners and advanced developers

View Tutorials

Resources

Find development resources and get your questions answered

View Resources