- 24 May, 2018 1 commit
-
-
vfdev authored
-
- 18 May, 2018 2 commits
-
-
Pithawat Vachiramon authored
-
Ben authored
-
- 17 May, 2018 3 commits
-
-
David Morton authored
* Add classes metadata to MNIST and FashionMNIST * Add `targets` property to MNIST and FashionMNIST * Add class metadata to CIFAR10/CIFAR100 * Add `targets` property to CIFAR10/CIFAR100 * Add targets attribute to DatasetFolder
-
Soumith Chintala authored
This reverts commit 972b80c9.
-
Taihyun Hwang authored
* cifar10.meta['label_names'] * cifar100.meta['fine_label_names'] * cifar100.meta['coarse_label_names']
-
- 15 May, 2018 2 commits
-
-
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]
-
Vishwak Srinivasan authored
-
- 11 May, 2018 1 commit
-
-
Maruth Goyal authored
* Added Progress Bar to the dataset downloading utility * Updated progressbar to update by blcoks * Added progressbar2 to the requirements * fixed style issues * Shifted from progressbar to tqdm
-
- 09 May, 2018 1 commit
-
-
vfdev authored
nit: replace 4 by expansion
-
- 04 May, 2018 1 commit
-
-
vfdev authored
Remove test with variables
-
- 30 Apr, 2018 1 commit
-
-
Ryuichiro Hataya authored
* fix for PyTorch v0.4 (remove .data and add _ for the initializations in nn.init) * fix m.**.**() style to nn.init.**(**) style * remove .idea * fix lines and indents * fix lines and indents * change to use `kaming_normal_` * add `.data` for safety * add nonlinearity='relu' for sure * fix indents
-
- 24 Apr, 2018 1 commit
-
-
Soumith Chintala authored
-
- 21 Apr, 2018 1 commit
-
-
Tongzhou Wang authored
-
- 16 Apr, 2018 2 commits
-
-
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
-
Francisco Massa authored
-
- 12 Apr, 2018 1 commit
-
-
Tongzhou Wang authored
-
- 07 Apr, 2018 1 commit
-
-
Vishwak Srinivasan authored
* Add LinearTransformation to docs - Arrange the transforms alphabetically * Add missing transforms to docs
-
- 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 3 commits
-
-
Calvin Lee authored
-
Iacopo Poli authored
Both conditional branches in `__init__` were executed, since `classes` for test becomes a list and `if` was used instead of `elif`.
-
Utku Ozbulak authored
* Added reflect, symmetric and edge padding * Updated padding docs, added tests
-
- 27 Mar, 2018 1 commit
-
-
vfdev authored
Add testing case with Pillow-SIMD, fix bug in RandomAffine if Pillow<5.0.0, add missing docs for affine (#439)
-
- 23 Mar, 2018 1 commit
-
-
Jason Park authored
-
- 21 Mar, 2018 2 commits
-
-
Jason Park authored
* Fix uninitialized instance variables * Maintain consistency with other dataset classes * Fix double assignment * Fix initialization of self.classes
-
Jason Park authored
-
- 20 Mar, 2018 2 commits
-
-
reynoldscem authored
-
Jason Park authored
The URL to download EMNIST seems to have changed. I fixed this.
-
- 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
-
- 08 Mar, 2018 1 commit
-
-
Francisco Massa authored
It was pointing to an old version where the validation pre-processing was the same as the training pre-processing, and thus had randomness in it (instead of CenterCrop).
-
- 02 Mar, 2018 1 commit
-
-
vfdev authored
-
- 26 Feb, 2018 1 commit
-
-
Douglas H. Bradshaw authored
-
- 20 Feb, 2018 2 commits
-
-
Zhuliang Yao authored
-
vfdev authored
* Add random affine transformation * Rewrite __repr__ * Refactor affine transform and update tests
-
- 14 Feb, 2018 1 commit
-
-
vfdev authored
if on dtype -> elif on dtype
-
- 12 Feb, 2018 3 commits
-
-
Vishwak Srinivasan authored
* Update transforms __repr__ * Add _pil_interpolation_to_str map for obtaining strings for PIL.Image interpolation options * Fix typo
-
vfdev authored
* Add RandomApply, RandomChoice, RandomOrder transformations * Rename argument `proba` to `p`
-
vfdev authored
* Set probability as configuration parameter in RandomHorizontalFlip and RandomHorizontalFlip (#414) * Fix documentation
-