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. 02 Apr, 2019 2 commits
  3. 01 Apr, 2019 1 commit
  4. 29 Mar, 2019 3 commits
  5. 28 Mar, 2019 2 commits
    • Francisco Massa's avatar
      Add MobileNet V2 (#818) · a61803f0
      Francisco Massa authored
      * Add MobileNet V2
      
      * Remove redundant functions and make tests pass
      
      * Simplify a bit the implementation
      
      * Reuse ConvBNReLU more often
      
      * Remove input_size and minor changes
      
      * Py2 fix
      a61803f0
    • Francisco Massa's avatar
      Initial version of classification reference scripts (#819) · 27ff89f6
      Francisco Massa authored
      * Initial version of classification reference training script
      
      * Updates
      
      * Minor updates
      
      * Expose a few more options
      
      * Load optimizer and lr_scheduler when resuming
      
      Also log the learning rate
      
      * Evaluation-only and minor improvements
      
      Identified a bug in the reporting of the results. They need to be reduced between all processes
      
      * Address Soumith's comment
      
      * Fix some approximations on the evaluation metric
      
      * Flake8
      27ff89f6
  6. 26 Mar, 2019 6 commits
  7. 25 Mar, 2019 2 commits
    • Francisco Massa's avatar
      Add basic model testing. (#811) · 57e87769
      Francisco Massa authored
      * Add basic model testing.
      
      Also fixes flaky test
      
      * Fix flake8
      57e87769
    • ekka's avatar
      Add AffineTransformation (#793) · c88d7fb5
      ekka authored
      * Add Affinetransformation
      
      Add Affinetransformation to superseed LinearTransformation
      
      * Add test
      
      * Add zero mean_vector in LinearTransformation and improved docs
      
      * update
      
      * minor fix
      
      * minor fix2
      
      * fixed flake8
      
      * fix flake8
      
      * fixed transpose syntax
      
      * fixed shape of mean_vector in test
      
      * fixed test
      
      * print est cov and mean
      
      * fixed flake8
      
      * debug
      
      * reduce num_samples
      
      * debug
      
      * fixed num_features
      
      * fixed rtol for cov
      
      * fix __repr__
      
      * Update transforms.py
      
      * Update test_transforms.py
      
      * Update transforms.py
      
      * fix flake8
      
      * Update transforms.py
      
      * Update transforms.py
      
      * Update transforms.py
      
      * Update transforms.py
      
      * Changed dim of mean_vector to 1D, doc and removed .numpy () from format_string
      
      * Restore test_linear_transformation()
      
      * Update test_transforms.py
      c88d7fb5
  8. 24 Mar, 2019 1 commit
  9. 20 Mar, 2019 1 commit
  10. 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
  11. 11 Mar, 2019 3 commits
  12. 09 Mar, 2019 4 commits
  13. 07 Mar, 2019 3 commits
    • Bryan He's avatar
      Add Caltech101, Caltech256, and CelebA (#775) · 9d9f48a3
      Bryan He authored
      * Add Caltech101 and Caltech256
      
      * Add information about default for target_type
      
      * Fix docs
      
      * Add function to download from Google Drive
      
      * Add CelebA dataset
      
      * Only import pandas when needed
      
      * Addressing comments
      
      * Remove trailing whitespace
      
      * Replace torch.LongTensor with torch.as_tensor
      9d9f48a3
    • maria8899's avatar
      Update directory documentation (#778) · ab86a3a1
      maria8899 authored
      ab86a3a1
    • Michael Kösel's avatar
      Add GoogLeNet (Inception v1) (#678) · a2093007
      Michael Kösel authored
      * Add GoogLeNet (Inception v1)
      
      * Fix missing padding
      
      * Add missing ReLu to aux classifier
      
      * Add Batch normalized version of GoogLeNet
      
      * Use ceil_mode instead of padding and initialize weights using "xavier"
      
      * Match BVLC GoogLeNet zero initialization of classifier
      
      * Small cleanup
      
      * use adaptive avg pool
      
      * adjust network to match TensorFlow
      
      * Update url of pre-trained model and add classification results on ImageNet
      
      * Bugfix that improves performance by 1 point
      a2093007
  14. 06 Mar, 2019 1 commit
  15. 01 Mar, 2019 1 commit
  16. 28 Feb, 2019 2 commits
  17. 27 Feb, 2019 1 commit
  18. 26 Feb, 2019 1 commit
  19. 23 Feb, 2019 1 commit
  20. 21 Feb, 2019 1 commit
  21. 18 Feb, 2019 2 commits