1. 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
  2. 26 Mar, 2019 1 commit
  3. 19 Mar, 2019 1 commit
    • Philip Meier's avatar
      ImageNet dataset (#764) · 69382912
      Philip Meier authored
      * initial commit
      
      * fixed Python2 issue
      
      * fixed naming incorrectness and Python2 compability
      
      * fixed preparation of train folder
      
      * removed detection dataset
      
      * added docstring and repr
      
      * moved import of scipy to make the import of torchvision independent of it
      
      * improved conversion from class string to index
      
      * removed support for other years than 2012
      
      * removed accidentally added file
      
      * moved emptying of split folder to avoid accidental deletion
      
      * removed deletion of the images
      
      * removed error conversion for Python2
      
      * Aligned class indices with the indices identified by ImageFolder class
      69382912
  4. 09 Mar, 2019 1 commit
  5. 07 Mar, 2019 2 commits
  6. 01 Mar, 2019 1 commit
  7. 28 Feb, 2019 1 commit
  8. 13 Feb, 2019 2 commits
  9. 12 Feb, 2019 2 commits
  10. 11 Feb, 2019 1 commit
  11. 25 Jan, 2019 1 commit
  12. 25 Dec, 2018 2 commits
  13. 21 Dec, 2018 1 commit
  14. 13 Dec, 2018 1 commit
  15. 06 Dec, 2018 1 commit
    • Benjamin Pinaya's avatar
      VOCSegmentation, VOCDetection, linting passing, examples. (#663) · e489abc6
      Benjamin Pinaya authored
      
      
      * VOC Dataset, linted, flak8 passing, samples on gist.
      
      * Double backtick on values.
      
      * Apply suggestions from code review
      
      Add suggestions from @ellisbrown, using dict of dicts instead of array index.
      Co-Authored-By: default avatarbpinaya <bpg_92@hotmail.com>
      
      * Fixed errors with the new comments.
      
      * Added documentation on RST
      
      * Removed getBB, added parse_voc_xml, variable naming change.
      
      * Removed unused variable, removed VOC_CLASSES, two new gists for test.
      e489abc6
  16. 04 Dec, 2018 2 commits
  17. 30 Oct, 2018 1 commit
  18. 26 Oct, 2018 1 commit
    • Leon Sixt's avatar
      Fix FashionMNIST loading MNIST (#640) · 36215690
      Leon Sixt authored
      Before this would lead FashionMNIST to contain mnist data:
      
      ```
      MNIST(root, download=True)
      FashionMNIST(root, download=True)
      ```
      
      As MNIST and FashionMNIST are the same classes, the processed
      outputs actual ended up to be the same files. This commit now
      stores them at different files and also stores the class name when
      saving them. I also added md5 sums.
      36215690
  19. 25 Oct, 2018 1 commit
  20. 21 Sep, 2018 1 commit
  21. 17 Sep, 2018 2 commits
  22. 11 Sep, 2018 2 commits
  23. 16 Aug, 2018 1 commit
  24. 27 Jul, 2018 1 commit
  25. 25 Jun, 2018 1 commit
  26. 06 Jun, 2018 2 commits
  27. 18 May, 2018 2 commits
  28. 17 May, 2018 3 commits
  29. 11 May, 2018 1 commit
    • Maruth Goyal's avatar
      Progress Bar for download_url (#497) · 47214f05
      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
      47214f05