1. 25 Oct, 2021 1 commit
  2. 21 Oct, 2021 1 commit
  3. 18 Oct, 2021 1 commit
  4. 27 Sep, 2021 1 commit
  5. 17 Sep, 2021 1 commit
  6. 10 Sep, 2021 1 commit
  7. 06 Sep, 2021 1 commit
  8. 01 Sep, 2021 1 commit
  9. 26 Aug, 2021 2 commits
  10. 19 Aug, 2021 1 commit
  11. 16 Aug, 2021 1 commit
  12. 12 Aug, 2021 1 commit
  13. 04 Aug, 2021 1 commit
  14. 28 Jul, 2021 1 commit
  15. 28 Jun, 2021 1 commit
  16. 24 Jun, 2021 1 commit
  17. 10 Jun, 2021 1 commit
  18. 09 Jun, 2021 2 commits
  19. 08 Jun, 2021 1 commit
  20. 07 Jun, 2021 1 commit
  21. 04 Jun, 2021 1 commit
  22. 01 Jun, 2021 3 commits
  23. 24 May, 2021 1 commit
  24. 21 May, 2021 3 commits
  25. 19 May, 2021 1 commit
  26. 13 May, 2021 1 commit
  27. 11 May, 2021 1 commit
  28. 10 May, 2021 1 commit
    • vfdev's avatar
      Added antialias option to transforms.functional.resize (#3761) · b56f17ae
      vfdev authored
      * WIP Added antialias option to transforms.functional.resize
      
      * Updates according to the review
      
      * Excluded these C++ files for iOS build
      
      * Added support for mixed downsampling/upsampling
      
      * Fixed heap overflow caused by explicit loop unrolling
      
      * Applied PR review suggestions
      - used pytest parametrize instead unittest
      - cast to scalar_t ptr
      - removed interpolate aa files for ios/android keeping original cmake version
      b56f17ae
  29. 27 Apr, 2021 1 commit
  30. 13 Apr, 2021 1 commit
  31. 08 Apr, 2021 1 commit
    • Nicolas Hug's avatar
      Add Quantized version of RoIAlign (#3624) · ad9cc62a
      Nicolas Hug authored
      * WIP
      
      * clang
      
      * docs
      
      * extracted out common utils
      
      * Use better quantization function and pass tensors as parameters
      
      * proper dequantization
      
      * Some tests
      
      * Dequantization optimization, seems to gain a few ms
      
      * clang-format
      
      * again
      
      * more correct test. Had to remove optimization although it almost works
      
      * Also test aligned=True
      
      * remove useless part
      
      * more docs and comments
      
      * Put back optimization with more robust test
      
      * Added check for index upper bound
      
      * avoid possible overflow
      
      * Move common function into common.h
      
      * oops
      
      * scale=1,zero_point=0 makes more sense
      
      * Force batch size of 1 to prevent any indexingbug
      
      * format
      
      * format again
      
      * updated docstring
      
      * put back description comment for pre_calc_bilinear_interpolate
      
      * revert most changes to docstring as it's taken care of in another PR
      ad9cc62a
  32. 31 Mar, 2021 2 commits
  33. 30 Mar, 2021 1 commit
    • Nicolas Hug's avatar
      Add quantized version of nms (#3601) · f74bfab6
      Nicolas Hug authored
      * Add quantized version of nms
      
      * Added tests
      
      * Compute areas only once
      
      * remove calls to dequantize_val
      
      * fix return type for empty tensor
      
      * flake8
      
      * remove use of scale as it gets cancelled out
      
      * simpler int convertion in tests
      
      * explicitly set ovr to double
      
      * add tests for more values of scale and zero_point
      
      * comment about underflow
      
      * remove unnecessary accessor
      
      * properly convert to float for division
      
      * Add comments about underflow
      
      * explicitely cast coordinates to float to allow vectorization
      
      * clang
      
      * clang  again
      
      * hopefully OK now
      f74bfab6