1. 04 Jul, 2019 1 commit
  2. 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
  3. 13 Jun, 2019 3 commits
  4. 12 Jun, 2019 1 commit
  5. 07 Jun, 2019 1 commit
  6. 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
  7. 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
  8. 30 Oct, 2018 1 commit
  9. 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