1. 28 Apr, 2021 1 commit
  2. 26 Apr, 2021 1 commit
  3. 07 Apr, 2021 1 commit
  4. 30 Mar, 2021 1 commit
  5. 24 Mar, 2021 1 commit
  6. 15 Jan, 2021 1 commit
  7. 07 Dec, 2020 1 commit
  8. 06 Nov, 2020 1 commit
  9. 31 Jul, 2020 1 commit
  10. 29 Apr, 2020 1 commit
  11. 27 Apr, 2020 1 commit
  12. 16 Apr, 2020 1 commit
  13. 01 Apr, 2020 1 commit
  14. 30 Mar, 2020 1 commit
  15. 18 Nov, 2019 1 commit
  16. 02 Sep, 2019 1 commit
  17. 19 Jul, 2019 1 commit
  18. 25 Apr, 2019 2 commits
  19. 12 Apr, 2019 1 commit
  20. 05 Apr, 2019 1 commit
  21. 04 Apr, 2019 1 commit
    • Philip Meier's avatar
      Refactoring of the datasets (#749) · 6cabab3a
      Philip Meier authored
      * introduced new super class for all vision datasets
      
      * Removed root from repr if dataset has no root
      
      * reverted some overly-ambitious autoformatting
      
      * reverted some overly-ambitious autoformatting
      
      * added split attribute to repr of STL10 dataset
      
      * made Python2 friendly and more robust
      
      * Fixed call of the superclass constructor
      
      * moved transform and target_transform back to the base classes
      
      * added check if transforms are present before printing to avoid setting them within the constructor
      
      * added missing transforms and target_transforms to base classes
      
      * fixed linter error
      6cabab3a
  22. 03 Apr, 2019 1 commit
    • James Hamm's avatar
      Replace endswith calls in a loop with a single endswith call (#832) · f566fac8
      James Hamm authored
      str.endswith can take a single string, or a tuple of strings. This replaces a loop over each extension and a call to endswith with a single call to endswith passing in all the allowed extensions. This has the advantage that the loop over each extension is done in c rather than python, and the code is a little less verbose.
      f566fac8
  23. 11 Feb, 2019 1 commit
  24. 25 Jan, 2019 1 commit
  25. 27 Jul, 2018 1 commit
  26. 06 Jun, 2018 1 commit
  27. 18 May, 2018 1 commit
  28. 17 May, 2018 1 commit
    • David Morton's avatar
      Add metadata to some datasets (#501) · 628e90cb
      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
      628e90cb
  29. 04 Apr, 2018 1 commit
  30. 10 Mar, 2018 1 commit
    • Frédérik Paradis's avatar
      Adding a DatasetFolder class. (#444) · fa377c47
      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
      fa377c47
  31. 09 Mar, 2018 2 commits
  32. 04 Jan, 2018 1 commit
  33. 06 Dec, 2017 1 commit
    • Alykhan Tejani's avatar
      Fix PIL img close warning (#357) · 6c2ac026
      Alykhan Tejani authored
      * add scale and ratio params to RandomResizedCrop.get_params
      
      * don't use Image as a context manager to avoid exceptions on close
      
      * flake8
      6c2ac026
  34. 06 Nov, 2017 1 commit
  35. 02 Aug, 2017 1 commit
  36. 02 Jul, 2017 1 commit
  37. 13 Jun, 2017 1 commit
  38. 02 Jun, 2017 1 commit
    • Sasank Chilamkurthy's avatar
      Improve torchvision documentation (#179) · 432aa00d
      Sasank Chilamkurthy authored
      * Add documentation for transforms
      
      * document and remove unused imports in mnist.py
      
      * document lsun, mscoco datasets
      
      * rest of the datasets documented
      
      * Clean up the documentation in other functions
      
      * Add links for datasets
      
      * Add more documentation
      
      * pep8 fix
      432aa00d