- 25 Oct, 2018 1 commit
-
-
Kyryl Truskovskyi authored
* cast mnist targer to int * fix unused variables * fix syntax in tests * remove # noqa; rename l variable to line_split; use except OSError * add W504 * add W504 * add W503,W504 tox.ini
-
- 29 Aug, 2018 1 commit
-
-
Vishwak Srinivasan authored
-
- 25 Aug, 2018 1 commit
-
-
Soumith Chintala authored
-
- 28 May, 2018 1 commit
-
-
Holger Kohr authored
-
- 15 May, 2018 1 commit
-
-
vfdev authored
Improve `test_pad_with_non_constant_padding_modes` to avoid data multiplication in `transforms.ToPILImage()` on float data: ```python img = torch.zeros(3, 27, 27) # Float32 img[:, :, 0] = 1 # we add 1 and not 255 img = transforms.ToPILImage()(img) # This converts 1 to 255 due to [pic = pic.mul(255).byte()](https://github.com/pytorch/vision/blob/master/torchvision/transforms/functional.py#L107) ``` and thus test's correct values are [..., 200, 1, 0]
-
- 04 May, 2018 1 commit
-
-
vfdev authored
Remove test with variables
-
- 16 Apr, 2018 1 commit
-
-
arturml authored
* Add case in test_to_tensor for PIL Images mode '1' * Add support in ToTensor for PIL Images mode '1' * Fix pep8 issues
-
- 06 Apr, 2018 1 commit
-
-
anguelos authored
* Made transorms.RandomCrop tolerate images smaller than the given size. * Extended the tescase for transforms.RandomCrop * Made the testcase test for owidth=width+1 * Fixed the one pixel pading and the testcase * Fixed minor lintint errors. flake8 passes.
-
- 04 Apr, 2018 1 commit
-
-
Utku Ozbulak authored
* Added reflect, symmetric and edge padding * Updated padding docs, added tests
-
- 10 Mar, 2018 1 commit
-
-
Frédérik Paradis authored
* Adding tests to ImageFolder * Adding DatasetFolder class * Fix tests for pytest and code for lint checker * Adding mock to requirements for ImageFolder tests * Remove mocks from requirements
-
- 09 Mar, 2018 2 commits
-
-
Soumith Chintala authored
This reverts commit ab03dc43.
-
Frédérik Paradis authored
* Adding tests to ImageFolder * Adding DatasetFolder class * Fix tests for pytest and code for lint checker * Adding mock to requirements for ImageFolder tests
-
- 20 Feb, 2018 1 commit
-
-
vfdev authored
* Add random affine transformation * Rewrite __repr__ * Refactor affine transform and update tests
-
- 12 Feb, 2018 3 commits
- 01 Jan, 2018 1 commit
-
-
Vishwak Srinivasan authored
* add __repr__ for all transform objects * add tests for __repr__
-
- 13 Nov, 2017 1 commit
-
-
Sourabh Daptardar authored
* add to_grayscale + randomGrayscale
-
- 09 Nov, 2017 1 commit
-
-
David de la Iglesia Castro authored
add rotate and RandomRotation to transforms
-
- 02 Nov, 2017 1 commit
-
-
Alykhan Tejani authored
* refactor transforms and add transforms/functional.py * add __all__ to transforms.py
-
- 17 Oct, 2017 2 commits
-
-
Alykhan Tejani authored
-
Alykhan Tejani authored
* add assert for byte tensor to_pil_image * add mode param to ToPILImage * add some more tests * fix formatiing on error messages * added tests for to_pil_image with mode param * flake8 fixes
-
- 15 Oct, 2017 1 commit
-
-
Geoffrey Roeder authored
expands coverage on test_to_tensor to 1 and 4 image channels
-
- 13 Oct, 2017 1 commit
-
-
Alykhan Tejani authored
-
- 12 Oct, 2017 1 commit
-
-
Alykhan Tejani authored
-
- 07 Oct, 2017 1 commit
-
-
Iacopo Poli authored
* added Whiten transform and relative section in README * added Whiten transform and its section in README * fixed lint * fixed lint again * added linear transformation and whitening test unitary covariance * fixed lint and test * commit before rebasing * before rebase * added assertion to check matrix size * fix readme * added space around operator * replace assert with raise ValueError, fix spaces and readme
-
- 05 Oct, 2017 1 commit
-
-
Alykhan Tejani authored
* increase num_samples, reduce alpha and fix seed for hflip and vflip tests * flake8 fixes
-
- 04 Oct, 2017 1 commit
-
-
Sasank Chilamkurthy authored
* Add adjust_hue and adjust_saturation * Add adjust_brightness, adjust_contrast Also * Change adjust_saturation to use pillow implementation * Documentation made clear * Add adjust_gamma * Add ColorJitter * Address review comments * Fix documentation for ColorJitter * Address review comments 2 * Fallback to adjust_hue in case of BW images * Add tests * fix dtype
-
- 01 Oct, 2017 1 commit
-
-
Alykhan Tejani authored
rename scaled_crop -> resized_crop + rename RandomSizedCrop -> RandomResizedCrop
-
- 26 Sep, 2017 3 commits
-
-
Sasank Chilamkurthy authored
TenCrop and FiveCrop refactored
-
Alykhan Tejani authored
add FiveCrop and TenCrop
-
Alykhan Tejani authored
add RandomVerticalFlip transform
-
- 16 Sep, 2017 1 commit
-
-
Alykhan Tejani authored
make size param of Scale (h,w) not (w,h)
-
- 12 Sep, 2017 1 commit
-
-
Alykhan Tejani authored
-
- 08 Sep, 2017 1 commit
-
-
Aiden Nibali authored
-
- 04 Sep, 2017 1 commit
-
-
Francisco Massa authored
-
- 03 Sep, 2017 1 commit
-
-
Alykhan Tejani authored
-
- 21 Apr, 2017 1 commit
-
-
Sam Gross authored
It can be enabled by calling torchvision.set_image_backend('accimage')
-
- 17 Apr, 2017 1 commit
-
-
Soumith Chintala authored
-
- 06 Apr, 2017 1 commit
-
-
Huan Yang authored
* Fixed border missing on bottom and right side using make_grid * Add support for Transforms.Scale([h, w]) with specific height and width if self.size is a int then scale the image with the shorter side, otherwise if self.size is a list then scale the image to self.size directly * Add assert of size and doc for README Add assert of size and doc for README * Fix linter problem Fix linter problem * Add test for Scale Add test for Scale * Add both tuple and list support for Scale.size Add both tuple and list support for Scale.size * Add order of Scale.size in document and test case for list type of Scale.size Add order of Scale.size in document and test case for list type of Scale.size
-