1. 01 Aug, 2023 2 commits
  2. 31 Jul, 2023 1 commit
  3. 24 Feb, 2023 2 commits
  4. 21 Feb, 2023 1 commit
  5. 16 Feb, 2023 3 commits
  6. 15 Feb, 2023 1 commit
  7. 13 Feb, 2023 1 commit
  8. 31 Jan, 2023 1 commit
  9. 05 Dec, 2022 1 commit
  10. 30 Nov, 2022 1 commit
  11. 03 Nov, 2022 1 commit
    • Philip Meier's avatar
      Fix hardcoded 255 (#6830) · cb4413a3
      Philip Meier authored
      * fix prototype kernels
      
      * fix stable kernels
      
      * fix tests
      
      * make test more robust
      
      * improve invert for signed integers
      
      * improve invert
      
      * fix posterize
      
      * Revert "assume that integer images are [0, 255] in equalize (#6859)"
      
      This reverts commit 436ff9a5
      
      .
      
      * fix solarize in AA
      
      * fix resize
      
      * Revert "fix resize"
      
      This reverts commit 5f33f4aa73e098237650b794157ec9335d964152.
      
      * add comment to float max value
      Co-authored-by: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
      cb4413a3
  12. 01 Nov, 2022 1 commit
  13. 27 Oct, 2022 1 commit
    • Vasilis Vryniotis's avatar
      [prototype] Minor speed and nit optimizations on Transform Classes (#6837) · e1f464bd
      Vasilis Vryniotis authored
      * Change random generator for ColorJitter.
      
      * Move `_convert_fill_arg` from runtime to constructor.
      
      * Remove unnecessary TypeVars.
      
      * Remove unnecessary casts
      
      * Update comments.
      
      * Minor code-quality changes on Geometical Transforms.
      
      * Fixing linter and other minor fixes.
      
      * Change mitigation for mypy.`
      
      * Fixing the tests.
      
      * Fixing the tests.
      
      * Fix linter
      
      * Restore dict copy.
      
      * Handling of defaultdicts
      
      * restore int idiom
      
      * Update todo
      e1f464bd
  14. 15 Oct, 2022 1 commit
  15. 14 Oct, 2022 1 commit
  16. 12 Oct, 2022 1 commit
  17. 10 Oct, 2022 2 commits
  18. 07 Oct, 2022 3 commits
    • Vasilis Vryniotis's avatar
      [prototype] Rewrite the meta dimension methods (#6722) · 6e203b44
      Vasilis Vryniotis authored
      * Rewrite `get_dimensions`, `get_num_channels` and `get_spatial_size`
      
      * Remove `get_chw`
      
      * Remove comments
      
      * Make `get_spatial_size` support non-image input
      
      * Reduce the unnecessary use of `get_dimensions*`
      
      * Fix linters
      
      * Fix merge bug
      
      * Linter
      
      * Fix linter
      6e203b44
    • Philip Meier's avatar
      replace new_like with wrap_like (#6718) · 4c049ca3
      Philip Meier authored
      * replace new_like with wrap_like
      
      * fix videos
      
      * revert casting in favor of ignoring mypy
      4c049ca3
    • Philip Meier's avatar
      add Video feature and kernels (#6667) · 3118fb52
      Philip Meier authored
      * add video feature
      
      * add video kernels
      
      * add video testing utils
      
      * add one kernel info
      
      * fix kernel names in Video feature
      
      * use only uint8 for video testing
      
      * require at least 4 dims for Video feature
      
      * add TODO for image_size -> spatial_size
      
      * image -> video in feature constructor
      
      * introduce new combined images and video type
      
      * add video to transform utils
      
      * fix transforms test
      
      * fix auto augment
      
      * cleanup
      
      * address review comments
      
      * add remaining video kernel infos
      
      * add batch dimension squashing to some kernels
      
      * fix tests and kernel infos
      
      * add xfails for arbitrary batch sizes on some kernels
      
      * fix test setup
      
      * fix equalize_image_tensor for multi batch dims
      
      * fix adjust_sharpness_image_tensor for multi batch dims
      
      * address review comments
      3118fb52
  19. 23 Sep, 2022 1 commit
  20. 22 Sep, 2022 1 commit
  21. 20 Sep, 2022 1 commit
    • Vasilis Vryniotis's avatar
      Make prototype `F` JIT-scriptable (#6584) · 841b9a19
      Vasilis Vryniotis authored
      
      
      * Improve existing low kernel test.
      
      * Add new midlevel jit-scriptability test (failing).
      
      * Remove duplicate aliases from kernel tests.
      
      * Fixing colour kernels.
      
      * Fixing deprecated kernels.
      
      * fix mypy
      
      * Silence mypy instead of fixing to avoid performance penalty
      
      * Fixing augment kernels.
      
      * Fixing augment meta.
      
      * Remove is_tracing calls.
      
      * Add fake ImageType and DType
      
      * Fixing type conversion kernels.
      
      * Fixing misc kernels.
      
      * partial fix geometry
      
      * Remove mutable default from `_pad_with_vector_fill()` + all other unnecessary defaults.
      
      * Fix geometry ops
      
      * Fixing tests
      
      * Removed xfail for jit tests on midlevel ops
      Co-authored-by: default avatarvfdev-5 <vfdev.5@gmail.com>
      841b9a19
  22. 15 Sep, 2022 1 commit
  23. 14 Sep, 2022 1 commit
  24. 31 Aug, 2022 3 commits
  25. 26 Aug, 2022 2 commits
    • Philip Meier's avatar
      More cleanup for prototype transforms (#6500) · 7245dc9e
      Philip Meier authored
      * add aliases for hflip and vflip
      
      * reduce imports from torchvision.transforms in torchvision.prototype.transforms
      
      * add aliases for to_pil_image abd pil_to_tensor
      
      * deprecate to_tensor
      
      * add some FIXME cleanup comments
      
      * address reviews
      
      * add dimension getters
      
      * undeprecate PILToTensor and ToPILImage
      
      * address review
      
      * fix test
      7245dc9e
    • Philip Meier's avatar
      move simple_tensor to features module (#6507) · 7de63171
      Philip Meier authored
      * move simple_tensor to features module
      
      * fix test
      7de63171
  26. 25 Aug, 2022 1 commit
    • Philip Meier's avatar
      Cleanup of prototype transforms (#6492) · becaba0e
      Philip Meier authored
      * fix passtrough on transforms and add dispatchers for five and ten crop
      
      * Revert "cleanup prototype auto augment transforms (#6463)"
      
      This reverts commit d8025b9a
      
      .
      
      * use legacy kernels in deprecated Grayscale and RandomGrayscale transforms
      
      * fix default type for Lambda transform
      
      * fix default type for ToDtype transform
      
      * move simple_tensor to features module
      
      * [skip ci]
      
      * Revert "move simple_tensor to features module"
      
      This reverts commit 7043b6ee3e3b1f6541371a4f2442cfc1fd664e4a.
      
      * cleanup
      
      * reinstate valid AA changes
      
      * address review
      
      * Fix linter
      Co-authored-by: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
      becaba0e
  27. 23 Aug, 2022 1 commit
  28. 22 Aug, 2022 1 commit
  29. 18 Aug, 2022 1 commit
  30. 29 Jul, 2022 1 commit