"doc/vscode:/vscode.git/clone" did not exist on "3015e9dfa73edbc2da03105d14e2aefc6e4ea95e"
  1. 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
  2. 24 Mar, 2019 1 commit
  3. 20 Mar, 2019 1 commit
  4. 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
  5. 11 Mar, 2019 3 commits
  6. 09 Mar, 2019 4 commits
  7. 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
  8. 06 Mar, 2019 1 commit
  9. 01 Mar, 2019 1 commit
  10. 28 Feb, 2019 2 commits
  11. 27 Feb, 2019 1 commit
  12. 26 Feb, 2019 1 commit
  13. 23 Feb, 2019 1 commit
  14. 21 Feb, 2019 1 commit
  15. 18 Feb, 2019 2 commits
  16. 14 Feb, 2019 4 commits
  17. 13 Feb, 2019 4 commits
  18. 12 Feb, 2019 2 commits
  19. 11 Feb, 2019 1 commit
  20. 25 Jan, 2019 1 commit
  21. 08 Jan, 2019 3 commits
    • Will Price's avatar
      [travis] Record code coverage and display on README (#703) · 98ca260b
      Will Price authored
      Test installed version of package
      
      To test against the installed version of the package (which is
      preferably since this can catch installation file inclusion bugs) we
      have to deal with quirks of coverage.py. By default the ecosystem is
      set up to do development coverage tests (e.g. in src, or by using `pip
      install -e .` or `python setup.py develop`).
      
      We want to test against the version installed, to do this we have to
      find the install path which we'll then pass to the `--cov` arg added by
      `pytest-cov`. To do this, we have to cd out of the current folder, and
      import the installed version and get it's install path (if we don't cd
      out, then we end up getting the existing directory in the cwd since by
      default cwd is on `sys.path`)
      
      Once we have the install path, we pass that to the `--cov` of pytest,
      however we also want to rewrite the paths for codecov to pick them up on
      the website, if they don't have to code coverage with local paths, they
      don't register is properly.
      
      In order to that, we have a .coveragerc file that has the contents:
      
      ```
      [paths]
      source =
          torchvision
          /**/site-packages/torchvision
      ```
      
      This tells codecov to treat all paths with those prefixes as the same,
      so anything like
      `/home/travis/miniconda/envs/test-environment/lib/python2.7/site-packages/torchvision/models/__init__.py`
      would be treated the same as
      `torchvision/models/__init__.py` after running the coverage combination
      command. The first path seems to be special, in that all subsequent
      paths are rewritten to that one.
      
      Once we collect coverage, we then run `coverage run` to rewrite the
      installation paths in the coverage file, `.coverage`, to those expected
      by codecov.
      
      Phew. And that's it.
      
      N.B: Whilst adding test/__init__.py does solve the issue, it also results in
      PWD being added to the path, and then we'll test the development version
      of the package, and not the installed version (see
      https://docs.pytest.org/en/latest/goodpractices.html#tests-as-part-of-application-code)
      98ca260b
    • surgan12's avatar
      Doc changes (#711) · 8f0ef5a7
      surgan12 authored
      * doc change
      
      * doc changes
      
      * lint_checks
      
      * Update transforms.py
      8f0ef5a7
    • Will Price's avatar
      Add downloads and docs badge to README (#702) · 84896a6e
      Will Price authored
      84896a6e