1. 27 Apr, 2020 1 commit
  2. 14 Apr, 2020 1 commit
  3. 29 Jan, 2020 2 commits
    • João Fernandes's avatar
      Small indentation fix (#1831) · c8345212
      João Fernandes authored
      * Force object annotiation to be an array
      
      * Remove unecessary parentheses
      
      * Change object check
      
      * Remove check for list
      
      * Add test coverage to xml parsing
      
      * Tidy up whitespace
      
      * Fix indentation
      c8345212
    • João Fernandes's avatar
      Force object annotiation to be a list (#1790) · cf78a29b
      João Fernandes authored
      * Force object annotiation to be an array
      
      * Remove unecessary parentheses
      
      * Change object check
      
      * Remove check for list
      
      * Add test coverage to xml parsing
      
      * Tidy up whitespace
      cf78a29b
  4. 21 Oct, 2019 1 commit
    • Philip Meier's avatar
      Remove download for ImageNet (#1457) · f46f2c15
      Philip Meier authored
      * remove download process
      
      * address comments
      
      * fix logic error
      
      * bug fixes
      
      * removed unused import
      
      * add docstrings
      
      * flake8
      
      * remove download BC
      
      * fix test
      
      * removed unused code
      
      * flake 8
      
      * add MD5 verification before extraction
      
      * add mock to test
      
      * * unify _verify_archive() method and function
      * remove force flag for parse_*_archive functions
      * cleanup
      
      * flake8
      f46f2c15
  5. 09 Sep, 2019 1 commit
    • Francisco Massa's avatar
      Add CircleCI (v2) (#1298) · e4d50039
      Francisco Massa authored
      * [WIP] Add CircleCI for CI
      
      * Make jobs only run on master
      
      * Add initial CI
      
      * [wip] testing if works
      
      * Trying some basic GPU tests
      
      * [WIP] maybe it will work?
      
      * [WIP] One more try
      
      * Pin versions
      
      * Simplify and reuse
      
      * Fix
      
      * [WIP] testing windows
      
      * [WIP] testing windows
      
      * Try windows
      
      * Try Windows
      
      * Try windows
      
      * Try windows
      
      * Try windows
      
      * Try windows
      
      * Try windows
      
      * Try windows
      
      * Windows speedup
      
      * Windows multicores
      
      * Add parallel flags for Windows
      
      * Skip some tests on Windows
      
      * Sync config.yml and config.yml.in
      
      * Regenerate
      
      * Run all tests
      
      * Limit python and cuda version for finding pytorch
      
      * Skip darwin for previous check
      
      * Add description
      
      * Fix logic
      
      * Remove space
      
      * Add CUDA test back
      
      * Add back .travis.yml for now and remove duplicate test
      
      * Add newline
      e4d50039
  6. 06 Aug, 2019 1 commit
  7. 09 Jul, 2019 1 commit
    • Philip Meier's avatar
      Test for SVHN (#1086) · 8e60cf40
      Philip Meier authored
      * cast images to PIL at instantiation instead of runtime
      
      * add test for svhn
      
      * added tests for remaining SVHN splits
      
      * flake8
      
      * rolled back changes to datasets
      8e60cf40
  8. 04 Jul, 2019 1 commit
  9. 15 Jun, 2019 1 commit
    • Philip Meier's avatar
      Add a generic test for the datasets (#1015) · 3c81d474
      Philip Meier authored
      * added a generic test for the datasets
      
      * addressed requested changes
      
      - renamed generic*() to generic_classification*()
      - moved function inside Tester
      - test class_to_idx attribute outside of generic_classification*()
      3c81d474
  10. 13 Jun, 2019 3 commits
  11. 12 Jun, 2019 1 commit
  12. 07 Jun, 2019 1 commit
  13. 03 Jun, 2019 1 commit
    • Philip Meier's avatar
      [WIP] Add test for ImageNet (#976) · 7716aba5
      Philip Meier authored
      * added fake data
      
      * fixed fake data
      
      * renamed extract and download methods and added functionality
      
      * added raw fake data
      
      * refactored imagenet and added test
      
      * flake8
      
      * added fake devkit and mocked download_url
      
      * reversed uncommenting
      
      * added mock to CI
      
      * fixed tests for imagefolder
      
      * flake8
      7716aba5
  14. 29 May, 2019 1 commit
    • Francisco Massa's avatar
      [WIP] Add tests for datasets (#966) · c59f0474
      Francisco Massa authored
      * WIP
      
      * WIP: minor improvements
      
      * Add tests
      
      * Fix typo
      
      * Use download_and_extract on caltech, cifar and omniglot
      
      * Add a print message during extraction
      
      * Remove EMNIST from test
      c59f0474
  15. 30 Oct, 2018 1 commit
  16. 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