| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- # LICENSE HEADER MANAGED BY add-license-header
- #
- # Copyright 2018 Kornia Team
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- import torch
- from kornia.core import Tensor
- def one_hot(labels: Tensor, num_classes: int, device: torch.device, dtype: torch.dtype, eps: float = 1e-6) -> Tensor:
- r"""Convert an integer label x-D tensor to a one-hot (x+1)-D tensor.
- Args:
- labels: tensor with labels of shape :math:`(N, *)`, where N is batch size.
- Each value is an integer representing correct classification.
- num_classes: number of classes in labels.
- device: the desired device of returned tensor.
- dtype: the desired data type of returned tensor.
- eps: epsilon for numerical stability.
- Returns:
- the labels in one hot tensor of shape :math:`(N, C, *)`,
- Examples:
- >>> labels = torch.LongTensor([[[0, 1], [2, 0]]])
- >>> one_hot(labels, num_classes=3, device=torch.device('cpu'), dtype=torch.float32)
- tensor([[[[1.0000e+00, 1.0000e-06],
- [1.0000e-06, 1.0000e+00]],
- <BLANKLINE>
- [[1.0000e-06, 1.0000e+00],
- [1.0000e-06, 1.0000e-06]],
- <BLANKLINE>
- [[1.0000e-06, 1.0000e-06],
- [1.0000e+00, 1.0000e-06]]]])
- """
- if not isinstance(labels, Tensor):
- raise TypeError(f"Input labels type is not a Tensor. Got {type(labels)}")
- if not labels.dtype == torch.int64:
- raise ValueError(f"labels must be of the same dtype torch.int64. Got: {labels.dtype}")
- if num_classes < 1:
- raise ValueError(f"The number of classes must be bigger than one. Got: {num_classes}")
- shape = labels.shape
- one_hot = torch.full((shape[0], num_classes) + shape[1:], eps, device=device, dtype=dtype)
- return one_hot.scatter_(1, labels.unsqueeze(1), 1.0)
|