1. 07 Oct, 2021 7 commits
  2. 06 Oct, 2021 5 commits
  3. 05 Oct, 2021 7 commits
  4. 04 Oct, 2021 4 commits
  5. 01 Oct, 2021 4 commits
  6. 30 Sep, 2021 5 commits
  7. 29 Sep, 2021 8 commits
    • Kai Zhang's avatar
      Add RegNet Architecture in TorchVision (#4403) · 194a0846
      Kai Zhang authored
      * initial code
      
      * add SqueezeExcitation
      
      * initial code
      
      * add SqueezeExcitation
      
      * add SqueezeExcitation
      
      * regnet blocks, stems and model definition
      
      * nit
      
      * add fc layer
      
      * use Callable instead of Enum for block, stem and activation
      
      * add regnet_x and regnet_y model build functions, add docs
      
      * remove unused depth
      
      * use BN/activation constructor and ConvBNActivation
      
      * add expected test pkl files
      
      * allow custom activation in SqueezeExcitation
      
      * use ReLU as the default activation
      
      * initial code
      
      * add SqueezeExcitation
      
      * initial code
      
      * add SqueezeExcitation
      
      * add SqueezeExcitation
      
      * regnet blocks, stems and model definition
      
      * nit
      
      * add fc layer
      
      * use Callable instead of Enum for block, stem and activation
      
      * add regnet_x and regnet_y model build functions, add docs
      
      * remove unused depth
      
      * use BN/activation constructor and ConvBNActivation
      
      * reuse SqueezeExcitation from efficientnet
      
      * refactor RegNetParams into BlockParams
      
      * use nn.init, replace np with torch
      
      * update README
      
      * construct model with stem, block, classifier instances
      
      * Revert "construct model with stem, block, classifier instances"
      
      This reverts commit 850f5f3ed01a2a9b36fcbf8405afd6e41d2e58ef.
      
      * remove unused blocks
      
      * support scaled model
      
      * fuse into ConvBNActivation
      
      * make reset_parameters private
      
      * fix type errors
      
      * fix for unit test
      
      * add pretrained weights for 6 variant models, update docs
      194a0846
    • Nicolas Hug's avatar
      c4dc3e02
    • Vasilis Vryniotis's avatar
      Replace MobileNetV3's SqueezeExcitation with EfficientNet's one (#4487) · ff126ae2
      Vasilis Vryniotis authored
      * Reuse EfficientNet SE layer.
      
      * Deprecating the mobilenetv3.SqueezeExcitation layer.
      
      * Passing the right activation on quantization.
      
      * Making strict named param.
      
      * Set default params if missing.
      
      * Fixing typos.
      ff126ae2
    • Nicolas Hug's avatar
      Prevent tests from leaking their respective RNG (#4497) · 13bd09dd
      Nicolas Hug authored
      
      
      * Add autouse fixture to save and reset RNG in tests
      
      * Add other RNG generators
      
      * delete freeze_rng_state
      
      * Hopefully fix GaussianBlur test
      
      * Alternative fix, probably better
      
      * revert changes to test_models
      Co-authored-by: default avatarFrancisco Massa <fvsmassa@gmail.com>
      13bd09dd
    • Nicolas Hug's avatar
      5e8a2116
    • Aditya Oke's avatar
      Add JIT tests (#4472) · b5d81f02
      Aditya Oke authored
      
      Co-authored-by: default avatarFrancisco Massa <fvsmassa@gmail.com>
      b5d81f02
    • Aditya Oke's avatar
      Rewrite gallery example for masks to boxes. (#4484) · a9d710a8
      Aditya Oke authored
      
      
      * start writing example
      
      * Update example
      
      * Add PenFudan Files
      
      * Update example
      
      * Remove unused files
      
      * Update file and adopt changes
      
      * Create links, fix float
      Co-authored-by: default avatarNicolas Hug <contact@nicolas-hug.com>
      a9d710a8
    • Philip Meier's avatar
      cleanup prototype datasets (#4471) · a068602e
      Philip Meier authored
      
      
      * cleanup image folder
      
      * make shuffling mandatory
      
      * rename parameter in home() function
      
      * don't show builtin list
      
      * make categories optional in dataset info
      
      * use pseudo-infinite buffer size for shuffler
      Co-authored-by: default avatarFrancisco Massa <fvsmassa@gmail.com>
      a068602e