Kai (Kazuya Ito)

Results 33 issues of Kai (Kazuya Ito)

### 🐛 Describe the bug [The doc](https://docs.pytorch.org/vision/main/generated/torchvision.transforms.v2.AutoAugment.html) of `AutoAugment()` says that only `NEAREST` and `BILINEAR` are supported: > Parameters: > ... > - interpolation (InterpolationMode, optional) – ... If input...

### 🐛 Describe the bug [The doc](https://docs.pytorch.org/vision/main/generated/torchvision.transforms.v2.TrivialAugmentWide.html) of `TrivialAugmentWide()` says that only `NEAREST` and `BILINEAR` are supported: > Parameters: > ... > - interpolation (InterpolationMode, optional) – ... If input...

### 🐛 Describe the bug [The doc](https://docs.pytorch.org/vision/master/generated/torchvision.transforms.v2.RandAugment.html) of `RandAugment()` says that only `NEAREST` and `BILINEAR` are supported: > Parameters: > ... > - interpolation (InterpolationMode, optional) – ... If input...

### 🐛 Describe the bug [The doc](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.ElasticTransform.html) of `ElasticTransform()` says that only `NEAREST` and `BILINEAR` are supported: > Parameters: > ... > - interpolation (InterpolationMode, optional) – ... If input...

### 📚 The doc issue According to [the source code](https://docs.pytorch.org/vision/main/_modules/torchvision/transforms/v2/_auto_augment.html#AugMix) of `AugMix()`, the default type of `interpolation` parameter is `BILINEAR` as shown below: ```python def __init__( self, severity: int =...

### 🐛 Describe the bug Setting `0` and `1` to `p` argument of [RandomAutocontrast()](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.RandomAutocontrast.html) gets the same results as shown below: ```python from torchvision.datasets import OxfordIIITPet from torchvision.transforms.v2 import RandomAutocontrast...

### 📚 The doc issue Setting a list of no transforms to `transforms` argument of [RandomApply()](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.RandomApply.html) gets the indirect error message as shown below. *You can see [this issue](https://github.com/pytorch/vision/issues/9023) as...

### 📚 The doc issue [The doc](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.AugMix.html) of `AugMix()` explains `all_ops` parameter as shown below but it's not clear enough: > Parameters: > ... > - all_ops ([bool](https://docs.python.org/3/library/functions.html#bool), optional) –...

### 🐛 Describe the bug Setting a float value to `magnitude` argument of [RandAugment()](https://pytorch.org/vision/master/generated/torchvision.transforms.v2.RandAugment.html) gets the wrong error message as shown below: ```python from torchvision.datasets import OxfordIIITPet from torchvision.transforms.v2 import...

### 📚 The doc issue [The doc](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.RandomAdjustSharpness.html) of `RandomAdjustSharpness()` says below: > Adjust the sharpness of the image or video with a given probability. > ... > Parameters: > -...