1. 07 May, 2019 1 commit
  2. 06 May, 2019 2 commits
  3. 03 May, 2019 1 commit
  4. 02 May, 2019 1 commit
  5. 01 May, 2019 1 commit
  6. 30 Apr, 2019 3 commits
  7. 29 Apr, 2019 1 commit
  8. 26 Apr, 2019 1 commit
  9. 25 Apr, 2019 7 commits
  10. 24 Apr, 2019 2 commits
  11. 18 Apr, 2019 2 commits
  12. 17 Apr, 2019 1 commit
  13. 16 Apr, 2019 1 commit
  14. 15 Apr, 2019 1 commit
  15. 12 Apr, 2019 2 commits
  16. 10 Apr, 2019 1 commit
  17. 09 Apr, 2019 5 commits
  18. 08 Apr, 2019 2 commits
  19. 05 Apr, 2019 2 commits
  20. 04 Apr, 2019 2 commits
    • 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
    • Sepehr Sameni's avatar
      make auxiliary heads in pretrained models optional (#828) · 50ea596e
      Sepehr Sameni authored
      * add aux_logits support to inception
      
      it is related to pytorch/pytorch#18668
      
      * instantiate InceptionAux only when requested
      
      it is related to pytorch/pytorch#18668
      
      * revert googlenet
      
      * support and aux_logits in pretrained models
      
      * return namedtuple when aux_logit is True
      50ea596e
  21. 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