1. 22 Dec, 2020 1 commit
  2. 17 Dec, 2020 1 commit
  3. 16 Dec, 2020 1 commit
  4. 15 Dec, 2020 1 commit
  5. 12 Dec, 2020 1 commit
  6. 02 Dec, 2020 1 commit
  7. 30 Nov, 2020 1 commit
  8. 27 Nov, 2020 2 commits
  9. 19 Nov, 2020 2 commits
  10. 16 Nov, 2020 1 commit
  11. 09 Nov, 2020 2 commits
  12. 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
  13. 03 Nov, 2020 1 commit
  14. 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
  15. 23 Oct, 2020 5 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
    • F-G Fernandez's avatar
      Added annotation typing to resnet (#2863) · 2ce6b189
      F-G Fernandez authored
      * style: Added annotation typing for resnet
      
      * fix: Fixed annotation to pass classes
      
      * fix: Fixed annotation typing
      
      * fix: Fixed annotation typing
      
      * fix: Fixed annotation typing for resnet
      
      * refactor: Removed un-necessary import
      
      * fix: Fixed constructor typing
      
      * style: Added black formatting on _resnet
      2ce6b189
  16. 22 Oct, 2020 4 commits
  17. 20 Oct, 2020 1 commit
  18. 14 Oct, 2020 2 commits
  19. 13 Oct, 2020 1 commit
    • Francisco Massa's avatar
      RetinaNet object detection (take 2) (#2784) · 5bb81c8e
      Francisco Massa authored
      
      
      * Add rough implementation of RetinaNet.
      
      * Move AnchorGenerator to a seperate file.
      
      * Move box similarity to Matcher.
      
      * Expose extra blocks in FPN.
      
      * Expose retinanet in __init__.py.
      
      * Use P6 and P7 in FPN for retinanet.
      
      * Use parameters from retinanet for anchor generation.
      
      * General fixes for retinanet model.
      
      * Implement loss for retinanet heads.
      
      * Output reshaped outputs from retinanet heads.
      
      * Add postprocessing of detections.
      
      * Small fixes.
      
      * Remove unused argument.
      
      * Remove python2 invocation of super.
      
      * Add postprocessing for additional outputs.
      
      * Add missing import of ImageList.
      
      * Remove redundant import.
      
      * Simplify class correction.
      
      * Fix pylint warnings.
      
      * Remove the label adjustment for background class.
      
      * Set default score threshold to 0.05.
      
      * Add weight initialization for regression layer.
      
      * Allow training on images with no annotations.
      
      * Use smooth_l1_loss with beta value.
      
      * Add more typehints for TorchScript conversions.
      
      * Fix linting issues.
      
      * Fix type hints in postprocess_detections.
      
      * Fix type annotations for TorchScript.
      
      * Fix inconsistency with matched_idxs.
      
      * Add retinanet model test.
      
      * Add missing JIT annotations.
      
      * Remove redundant model construction
      
      Make tests pass
      
      * Fix bugs during training on newer PyTorch and unused params in DDP
      
      Needs cleanup and to add back support for images with no annotations
      
      * Cleanup resnet_fpn_backbone
      
      * Use L1 loss for regression
      
      Gives 1mAP improvement over smooth l1
      
      * Disable support for images with no annotations
      
      Need to fix distributed first
      
      * Fix retinanet tests
      
      Need to deduplicate those box checks
      
      * Fix Lint
      
      * Add pretrained model
      
      * Add training info for retinanet
      Co-authored-by: default avatarHans Gaiser <hansg91@gmail.com>
      Co-authored-by: default avatarHans Gaiser <hans.gaiser@robovalley.com>
      Co-authored-by: default avatarHans Gaiser <hans.gaiser@robohouse.com>
      5bb81c8e
  20. 12 Oct, 2020 1 commit
  21. 29 Sep, 2020 2 commits
  22. 24 Sep, 2020 1 commit
  23. 22 Sep, 2020 1 commit
  24. 04 Aug, 2020 1 commit
  25. 29 Jul, 2020 1 commit
  26. 20 Jul, 2020 1 commit