"graphbolt/vscode:/vscode.git/clone" did not exist on "bbc8ff6261f2e0d2b5982e992b6fbe545e2a4aa1"
  1. 04 Mar, 2022 1 commit
  2. 01 Mar, 2022 1 commit
  3. 28 Feb, 2022 1 commit
    • Vasilis Vryniotis's avatar
      Replace get_image_size/num_channels with get_dimensions (#5487) · 095437aa
      Vasilis Vryniotis authored
      * Replace get_image_size/num_channels with get_image_dims
      
      * Reduce verbosity
      
      * Fix JIT-scriptability
      
      * Refactoring
      
      * More refactoring
      
      * Replace all _FP/_FT direct calls.
      
      * Remove usages of get_image_size and get_image_num_channels from code-base.
      
      * Fix JIT issues
      
      * Adding missing assertion.
      095437aa
  4. 23 Feb, 2022 1 commit
  5. 18 Feb, 2022 1 commit
    • Vasilis Vryniotis's avatar
      Adding AugMix implementation (#5411) · 48a61df2
      Vasilis Vryniotis authored
      
      
      * Adding basic augmix implementation.
      
      * Finish the implementation.
      
      * Add tests and documentation.
      
      * Fix tests.
      
      * Simplify code.
      
      * Speed optimizations.
      
      * Per image weights instead of per batch.
      
      * Fix tests.
      
      * Update torchvision/transforms/autoaugment.py
      Co-authored-by: default avatarvfdev <vfdev.5@gmail.com>
      
      * Changing the default severity value to get by default the same strength as RandAugment.
      Co-authored-by: default avatarvfdev <vfdev.5@gmail.com>
      48a61df2
  6. 16 Feb, 2022 1 commit
  7. 15 Feb, 2022 2 commits
  8. 10 Feb, 2022 1 commit
  9. 09 Feb, 2022 1 commit
  10. 08 Feb, 2022 3 commits
  11. 02 Feb, 2022 1 commit
  12. 28 Jan, 2022 1 commit
  13. 24 Jan, 2022 1 commit
  14. 21 Dec, 2021 1 commit
    • Kai Zhang's avatar
      Add api usage log to transforms (#5007) · 55f7faf3
      Kai Zhang authored
      * add api usage log to functional transforms
      
      * add log to transforms
      
      * fix for scriptablity
      
      * skip Compose for scriptability
      
      * follow the new policy
      
      * torchscriptbility
      
      * adopt new API
      
      * make Compose scriptable
      
      * move from __call__ to __init__
      55f7faf3
  15. 29 Nov, 2021 2 commits
    • Vasilis Vryniotis's avatar
      Fix bug on autocontrast when `min==max` (#4999) · 48b82c11
      Vasilis Vryniotis authored
      * Fix bug on autocontrast when `min==max`
      
      * Adding PIL vs TorchVision test for min==max
      48b82c11
    • puhuk's avatar
      Update functional_tensor.py (#4852) · 1c9ccb7b
      puhuk authored
      
      
      * Update functional_tensor.py
      
      To resolve issue #4818
      Add assert function and logic after checking bound of image
      
      * Update functional_tensor.py
      
      * Update test
      
      * Update test_functional_tensor.py
      
      * Update test_functional_tensor.py
      
      * Update test_functional_tensor.py
      
      * Update test_functional_tensor.py
      
      * Update test_functional_tensor.py
      
      * Update test_functional_tensor.py
      
      * Update test_functional_tensor.py
      
      * Update test_functional_tensor.py
      
      * Fix linter
      Co-authored-by: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
      1c9ccb7b
  16. 02 Nov, 2021 1 commit
  17. 01 Nov, 2021 1 commit
  18. 28 Oct, 2021 1 commit
  19. 27 Oct, 2021 1 commit
    • Nicolas Hug's avatar
      Remove p-value checks in test_transforms.py (#4756) · b621e38e
      Nicolas Hug authored
      * Change test_random_apply
      
      * Change test_random_choice
      
      * Change test_randomness
      
      * took care of RandomVert/HorizFlip
      
      * take care of RandomGrayScale
      
      * minor cleanup
      
      * avoid 0 degree rotation just in case
      b621e38e
  20. 08 Oct, 2021 1 commit
  21. 04 Oct, 2021 1 commit
    • Philip Meier's avatar
      Add ufmt (usort + black) as code formatter (#4384) · 5f0edb97
      Philip Meier authored
      
      
      * add ufmt as code formatter
      
      * cleanup
      
      * quote ufmt requirement
      
      * split imports into more groups
      
      * regenerate circleci config
      
      * fix CI
      
      * clarify local testing utils section
      
      * use ufmt pre-commit hook
      
      * split relative imports into local category
      
      * Revert "split relative imports into local category"
      
      This reverts commit f2e224cde2008c56c9347c1f69746d39065cdd51.
      
      * pin black and usort dependencies
      
      * fix local test utils detection
      
      * fix ufmt rev
      
      * add reference utils to local category
      
      * fix usort config
      
      * remove custom categories sorting
      
      * Run pre-commit without fixing flake8
      
      * got a double import in merge
      Co-authored-by: default avatarNicolas Hug <nicolashug@fb.com>
      5f0edb97
  22. 28 Sep, 2021 1 commit
  23. 27 Sep, 2021 1 commit
    • Loi Ly's avatar
      Added gray image support to `adjust_saturation` function (#4480) · f483e71b
      Loi Ly authored
      * update channels parameter to every calling to check_functional_vs_PIL_vs_scripted
      
      * update adjust_saturation
      
      * update docstrings for functional transformations
      
      * parametrize channels
      
      * update docstring of ColorJitter class
      
      * move channels to class's parameter
      
      * remove testing channels for geometric transforms
      
      * revert redundant changes
      
      * revert redundant changes
      
      * update grayscale test cases for randaugment, autoaugment, trivialaugment
      
      * update docstrings of randaugment, autoaugment, trivialaugment
      
      * update docstring of ColorJitter
      
      * fix adjust_hue's docstring
      
      * change test equal tolerance
      
      * refactor grayscale tests
      
      * make get_grayscale_test_image private
      f483e71b
  24. 24 Sep, 2021 1 commit
  25. 22 Sep, 2021 1 commit
  26. 15 Sep, 2021 1 commit
    • Vasilis Vryniotis's avatar
      Adding Mixup and Cutmix (#4379) · c8e3b2a5
      Vasilis Vryniotis authored
      * Add RandomMixupCutmix.
      
      * Add test with real data.
      
      * Use dataloader and collate in the test.
      
      * Making RandomMixupCutmix JIT scriptable.
      
      * Move out label_smoothing and try roll instead of flip
      
      * Adding mixup/cutmix in references script.
      
      * Handle one-hot encoded target in accuracy.
      
      * Add support of devices on tests.
      
      * Separate Mixup from Cutmix.
      
      * Add check for floats.
      
      * Adding device on expect value.
      
      * Remove hardcoded weights.
      
      * One-hot only when necessary.
      
      * Fix linter.
      
      * Moving mixup and cutmix to references.
      
      * Final code clean up.
      c8e3b2a5
  27. 06 Sep, 2021 2 commits
  28. 05 Sep, 2021 1 commit
  29. 02 Sep, 2021 2 commits
  30. 31 Aug, 2021 1 commit
  31. 26 Aug, 2021 1 commit
  32. 18 Aug, 2021 1 commit
  33. 16 Aug, 2021 2 commits