Kai (Kazuya Ito)
Kai (Kazuya Ito)
### 📚 The doc issue For `kernel_size` parameter, [the doc](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.GaussianBlur.html) of `GaussianBlur()` doesn't explain which is width or height as shown below so we don't know which is which: >...
### 📚 The doc issue Setting `1000` and `-1000` to `alpha` argument of [ElasticTransform()](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.ElasticTransform.html) gets the same kind of results as shown below: ```python from torchvision.datasets import OxfordIIITPet from torchvision.transforms.v2...
### 📚 The doc issue And, setting a single value and a couple of values to `alpha` and `sigma` argument of [ElasticTransform()](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.ElasticTransform.html) gets the same kind of results as shown...
### 📚 The doc issue `sigma` argument of [ElasticTransform()](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.ElasticTransform.html) doesn't like negative values as I show in [this issue](https://github.com/pytorch/vision/issues/8877). And, setting `0` and `-100` to `sigma` argument of [ElasticTransform()](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.ElasticTransform.html) gets...
### 🐛 Describe the bug Setting a negative and positive value together to `sigma` argument of [ElasticTransform()](https://pytorch.org/vision/main/generated/torchvision.transforms.v2.ElasticTransform.html) gets the error messages as shown below: ```python from torchvision.datasets import OxfordIIITPet from...
### 🐛 Describe the bug Setting a 1D tensor to [RandomAffine()](https://pytorch.org/vision/main/generated/torchvision.transforms.RandomAffine.html) after instantiation got the error message as shown below: ```python import torch from torchvision.transforms.v2 import RandomAffine my_tensor = torch.tensor([0])...
I added `zero or` to `chain_depth` to solve [the doc issue](https://github.com/pytorch/vision/issues/8952). Because according to [the source code](https://pytorch.org/vision/main/_modules/torchvision/transforms/v2/_auto_augment.html#AugMix) which is `self.chain_depth > 0` , it also includes `0` just not a...
It's really annoying that everytime I hover the icons on the left bar, subpages pop up so subpages shouldn't pop up. *It's ok that there are the icons on the...
*Memo: mypy --strict test.py mypy 1.19.0 Python 3.14.0 Windows 11 With a new syntax generic function, `T` cannot be used to set a default value to a parameter with [cast()](https://docs.python.org/3/library/typing.html#typing.cast)...
*Memo: - `mypy --strict test.py` - mypy 1.19.0 - Python 3.14.0 - Windows 11 [reveal_type()](https://docs.python.org/3/library/typing.html#typing.reveal_type) can get `T` type of the instance of a generic class as shown below: ```python...