1. 20 Nov, 2020 1 commit
  2. 06 Nov, 2020 1 commit
  3. 23 Oct, 2020 1 commit
  4. 12 Oct, 2020 1 commit
  5. 14 Sep, 2020 1 commit
  6. 09 Sep, 2020 1 commit
  7. 27 Aug, 2020 1 commit
    • Philip Meier's avatar
      Fix Places365 dataset (#2625) · 6f028212
      Philip Meier authored
      * fix images extraction
      
      * remove test split
      
      * fix tests
      
      * be less clever in test data generation
      
      * remove micro optimization
      
      * lint
      6f028212
  8. 25 Aug, 2020 2 commits
    • Philip Meier's avatar
      Places365 dataset (#2610) · fc69c225
      Philip Meier authored
      * initial draft
      
      * [dirty] progress
      
      * remove inheritance from ImageFolder
      
      * add tests
      
      * lint
      
      * fix type hints
      
      * align getitem with other datasets
      
      * remove unused import
      
      * add docstring
      
      * guard existing image folders from overwrite
      
      * add missing entry in docstring
      
      * make fixpath more legible
      
      * add Places365 to docs
      fc69c225
    • Philip Meier's avatar
      fix FashionMNIST docstring (#2614) · 01fb0df0
      Philip Meier authored
      01fb0df0
  9. 20 Aug, 2020 1 commit
    • Harsh Rangwani's avatar
      Only pull keys from db in lsun for faster cache. (#2544) · ea6b879e
      Harsh Rangwani authored
      * Only pull keys from db in lsun for faster cache.
      
      This pull request inhances the speed of the cache creation for lsun dataset. For the "kitchen_train" the speed was getting slow with cache creation taking more then two hours. This speeds up to cache creation in within minutes. The issue was pulling the large image values each time and dropping them.
      
      For more details on this please refer this issue https://github.com/jnwatson/py-lmdb/issues/195.
      
      * Fixed bug in lsun.py when loading multiple categories
      
      * Make linter happy
      ea6b879e
  10. 03 Aug, 2020 11 commits
  11. 31 Jul, 2020 9 commits
  12. 30 Jul, 2020 1 commit
  13. 03 Jul, 2020 1 commit
  14. 22 Jun, 2020 1 commit
  15. 18 May, 2020 1 commit
  16. 07 May, 2020 1 commit
    • Guillem Orellana Trullols's avatar
      Update ucf101.py (#2186) · 14af9de6
      Guillem Orellana Trullols authored
      Now the dataset is not working properly because of this line of code `indices = [i for i in range(len(video_list)) if video_list[i][len(self.root) + 1:] in selected_files]`. 
      Performing the `len(self.root) + 1` only make sense if there is no training / to root
      
      ```
      >>> root = 'data/ucf-101/videos'
      >>> video_path = 'data/ucf-101/videos/activity/video.avi'
      >>> video_path [len(root ):]
      '/activity/video.avi'
      >>> video_path [len(root ) + 1:]
      'activity/video.avi'
      ```
      
      Appending the root path also to the selected files is a simple solution and make the dataset works with and without a trailing slash.
      14af9de6
  17. 04 May, 2020 1 commit
  18. 29 Apr, 2020 1 commit
  19. 27 Apr, 2020 1 commit
  20. 16 Apr, 2020 1 commit
  21. 01 Apr, 2020 1 commit