1. 29 Jan, 2021 2 commits
  2. 27 Jan, 2021 2 commits
  3. 26 Jan, 2021 1 commit
  4. 22 Jan, 2021 1 commit
  5. 21 Jan, 2021 1 commit
  6. 20 Jan, 2021 2 commits
  7. 19 Jan, 2021 2 commits
  8. 18 Jan, 2021 1 commit
    • Vasilis Vryniotis's avatar
      Add MobileNetV3 architecture for Detection (#3253) · bf211dac
      Vasilis Vryniotis authored
      * Minor refactoring of a private method to make it reusuable.
      
      * Adding a FasterRCNN + MobileNetV3 with & w/o FPN models.
      
      * Reducing Resolution to 320-640 and anchor sizes to 16-256.
      
      * Increase anchor sizes.
      
      * Adding rpn score threshold param on the train script.
      
      * Adding trainable_backbone_layers param on the train script.
      
      * Adding rpn_score_thresh param directly in fasterrcnn_mobilenet_v3_large_fpn.
      
      * Remove fasterrcnn_mobilenet_v3_large prototype and update expected file.
      
      * Update documentation and adding weights.
      
      * Use buildin Identity.
      
      * Fix spelling.
      bf211dac
  9. 14 Jan, 2021 2 commits
  10. 08 Jan, 2021 1 commit
  11. 07 Jan, 2021 1 commit
  12. 23 Dec, 2020 1 commit
  13. 22 Dec, 2020 1 commit
  14. 17 Dec, 2020 1 commit
  15. 16 Dec, 2020 1 commit
  16. 15 Dec, 2020 1 commit
  17. 12 Dec, 2020 1 commit
  18. 02 Dec, 2020 1 commit
  19. 30 Nov, 2020 1 commit
  20. 27 Nov, 2020 2 commits
  21. 19 Nov, 2020 2 commits
  22. 16 Nov, 2020 1 commit
  23. 09 Nov, 2020 2 commits
  24. 06 Nov, 2020 3 commits
    • F-G Fernandez's avatar
      Added annotation typing to shufflenet (#2864) · 052edcec
      F-G Fernandez authored
      * style: Added annotation typing for shufflenet
      
      * fix: Removed duplicate type hint
      
      * refactor: Removed un-necessary import
      
      * fix: Fixed constructor typing
      
      * style: Added black formatting on depthwise_conv
      
      * style: Fixed stage typing in shufflenet
      052edcec
    • F-G Fernandez's avatar
      Added annotation typing to densenet (#2860) · a8d84961
      F-G Fernandez authored
      * style: Added annotation typing for densenet
      
      * fix: Fixed import
      
      * refactor: Removed un-necessary import
      
      * fix: Fixed constructor typing
      
      * chore: Updated mypy.ini
      
      * fix: Fixed tuple typing
      
      * style: Ignored some mypy errors
      
      * style: Fixed typing
      
      * fix: Added missing constructor typing
      a8d84961
    • Aditya Oke's avatar
      Changes to assert to ValueError in achor utils (#2960) · 46f6083b
      Aditya Oke authored
      * changes to value error
      
      * fixes it :)
      
      * simpler fix
      46f6083b
  25. 03 Nov, 2020 1 commit
  26. 27 Oct, 2020 1 commit
    • F-G Fernandez's avatar
      Added annotation typing to vgg (#2861) · f9e31a6d
      F-G Fernandez authored
      * style: Added annotation typing for vgg
      
      * fix: Fixed annotation typing
      
      * refactor: Removed un-necessary import
      
      * fix: Added missing annotation for kwargs
      
      * fix: Fixed constructor typing
      
      * refactor: Refactored typing to minize changes
      
      * refactor: Refactored typing cast
      
      * fix: Fixed module list typing
      f9e31a6d
  27. 23 Oct, 2020 4 commits
    • F-G Fernandez's avatar
      Fixed typing in constructors of models submodules (#2875) · 973db145
      F-G Fernandez authored
      * fix: Fixed constructor typing in models._utils
      
      * fix: Fixed constructor typing in models.alexnet
      
      * fix: Fixed constructor typing in models.mnasnet
      
      * fix: Fixed constructor typing in models.squeezenet
      973db145
    • F-G Fernandez's avatar
      Added annotation typing to mobilenet (#2862) · d4cd0bed
      F-G Fernandez authored
      * style: Added annotation typing for mmobilenet
      
      * fix: Fixed type hinting of adaptive pooling
      
      * refactor: Removed un-necessary import
      
      * fix: Fixed constructor typing
      
      * fix: Fixed list typing
      d4cd0bed
    • F-G Fernandez's avatar
      Added annotation typing to googlenet (#2858) · 59c97420
      F-G Fernandez authored
      * style: Added annotation typing for googlenet
      
      * fix: Removed duplicate typing
      
      * refactor: Moved factory function after class definition to fix typing
      
      * fix: Fixed annotation typing
      
      * refactor: Removed un-necessary import
      
      * fix: Fixed typing
      
      * refactor: Moved back up helper function and quote typed it
      59c97420
    • F-G Fernandez's avatar
      Added annotation typing to inception (#2857) · 8263c8a1
      F-G Fernandez authored
      * style: Added annotation typing for inception
      
      * refactor: Moved factory function after class definition
      
      * style: Changed attribute setting for type hinting
      
      * refactor: Removed un-necessary import
      
      * fix: Fixed typing in constructors
      
      * fix: Fixed kwargs typing
      
      * style: Fixed lint
      
      * refactor: Moved helpers function back and quote typed it
      8263c8a1