1. 06 Jun, 2022 1 commit
  2. 02 Jun, 2022 2 commits
    • Nikita Shulga's avatar
      [M1] Install "jpeg<=9b" rather than OpenJpeg (#6122) · c890a7e7
      Nikita Shulga authored
      Explicitly set PATH to point to `conda` binary, otherwise libjpeg detection logic does not work
      Pin libjpeg to the same version on x86 and m1
      Add simple tests that jpeg can be decoded by a generated wheel
      c890a7e7
    • Nikita Shulga's avatar
      [BE] Unify version computation (#6117) · 59ef2ab0
      Nikita Shulga authored
      * [BE] Unify version computation
      
      Instead of hardcoding dev version in various script, use one from
      `version.txt` if `setup_build_version` is called without arguments
      
      Also, pass `--pre` option to M1 build/test pip install commands to build
      TorchVision against nightly pytorch
      
      * Pin torchvision dependency to a specific pytorch version
      59ef2ab0
  3. 31 May, 2022 2 commits
  4. 30 May, 2022 3 commits
  5. 26 May, 2022 4 commits
    • Nikita Shulga's avatar
      Add M1 wheels binary builds (#5948) · d5929257
      Nikita Shulga authored
      d5929257
    • Vasilis Vryniotis's avatar
      6aaa2b00
    • YosuaMichael's avatar
      Refactor swin transfomer so later we can reuse component for 3d version (#6088) · 952f4806
      YosuaMichael authored
      * Use List[int] instead of int for window_size and shift_size
      
      * Make PatchMerging and SwinTransformerBlock able to handle 2d and 3d cases
      
      * Separate patch embedding from SwinTransformer and enable to get model without head by specifying num_heads=None
      
      * Dont use if before padding so it is fx friendly
      
      * Put the handling on window_size edge cases on separate function and wrap with torch.fx.wrap so it is excluded from tracing
      
      * Update the weight url to the converted weight with new structure
      
      * Update the accuracy of swin_transformer
      
      * Change assert to Exception and nit
      
      * Make num_classes optional
      
      * Add typing output for _fix_window_and_shift_size function
      
      * init head to None to make it jit scriptable
      
      * Revert the change to make num_classes optional
      
      * Revert unneccesarry changes that might be risky
      
      * Remove self.head declaration
      952f4806
    • Philip Meier's avatar
      add tests for F.pad_bounding_box (#6038) · 1d50dfa0
      Philip Meier authored
      
      
      * add tests for F.pad_bounding_box
      
      * Added correctness tests for pad and reimplemented bbox op to keep dtype
      
      * Update _geometry.py
      Co-authored-by: default avatarvfdev <vfdev.5@gmail.com>
      1d50dfa0
  6. 25 May, 2022 2 commits
  7. 24 May, 2022 2 commits
  8. 23 May, 2022 5 commits
  9. 20 May, 2022 5 commits
  10. 19 May, 2022 4 commits
  11. 18 May, 2022 7 commits
  12. 17 May, 2022 3 commits
    • Vasilis Vryniotis's avatar
      Document all pre-trained Classification weights (#6036) · edb7bbbd
      Vasilis Vryniotis authored
      * Improving the auto-gen doc.
      
      * Adding details for AlexNet, ConvNext, DenseNet, EfficientNets, GoogLeNet and InceptionV3.
      
      * Fixing location of `_docs`
      
      * Adding docs in the remaining classification models.
      
      * Fix linter
      edb7bbbd
    • WuZhe's avatar
      update paper link for FCOS refence (#6035) · 202ecfd5
      WuZhe authored
      
      
      * update paper link for FCOS refence
      
      * remove 'updated version'
      Co-authored-by: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
      202ecfd5
    • Philip Meier's avatar
      simplify OnlineResource.load (#5990) · b430ba68
      Philip Meier authored
      * simplify OnlineResource.load
      
      * [PoC] merge mock data preparation and loading
      
      * Revert "cache mock data based on config"
      
      This reverts commit 5ed6eedef74865e0baa746a375d5ec1f0ab1bde7.
      
      * Revert "[PoC] merge mock data preparation and loading"
      
      This reverts commit d62747962f9ed6a7b0b80849e7c971efabb5d3da.
      
      * remove preprocess returning a new path in favor of querying twice
      
      * address test comments
      
      * clarify comment
      
      * mypy
      
      * use builtin decompress utility
      b430ba68