1. 19 Jul, 2019 2 commits
  2. 17 Jul, 2019 1 commit
    • Daksh Jotwani's avatar
      Similarity learning reference code (#1101) · bbd363ca
      Daksh Jotwani authored
      * Add loss, sampler, and train script
      
      * Fix train script
      
      * Add argparse
      
      * Fix lint
      
      * Change f strings to .format()
      
      * Remove unused imports
      
      * Change TripletMarginLoss to extend nn.Module
      
      * Load eye uint8 tensors directly on device
      
      * Refactor model.py to backbone=None
      
      * Add docstring for PKSampler
      
      * Refactor evaluate() to take loader as arg instead
      
      * Change eval method to cat embeddings all at once
      
      * Add dataset comments
      
      * Add README.md
      
      * Add tests for sampler
      
      * Refactor threshold finder to helper method
      
      * Refactor targets comment
      
      * Fix lint
      
      * Rename embedding to similarity (More consistent with existing literature)
      bbd363ca
  3. 16 Jul, 2019 1 commit
  4. 15 Jul, 2019 2 commits
  5. 12 Jul, 2019 4 commits
  6. 11 Jul, 2019 1 commit
  7. 10 Jul, 2019 1 commit
    • ekka's avatar
      Add checks to roi_heads in detection module (#1091) · 6693b2c6
      ekka authored
      * add float32 to keypoint_rcnn docs
      
      * add float32 to faster_rcnn docs
      
      * add float32 to mask_rcnn
      
      * Update faster_rcnn.py
      
      * Update keypoint_rcnn.py
      
      * Update mask_rcnn.py
      
      * Update faster_rcnn.py
      
      * make keypoints float
      
      * make masks uint8
      
      * Update keypoint_rcnn.py
      
      * make labels Int64
      
      * make labels Int64
      
      * make labels Int64
      
      * Add checks for boxes, labels, masks, keypoints
      
      * update mask dim
      
      * remove dtype
      
      * check only if targets is not None
      
      * account for targets being a list
      
      * update target to be list of dict
      
      * Update faster_rcnn.py
      
      * Update keypoint_rcnn.py
      
      * allow boxes to be of float16 type as well
      
      * remove checks on mask
      6693b2c6
  8. 09 Jul, 2019 2 commits
  9. 08 Jul, 2019 1 commit
  10. 06 Jul, 2019 2 commits
    • Zhun Zhong's avatar
      Fix bug to RandomErasing (#1095) · 34833427
      Zhun Zhong authored
      * Fix bug to Random Erasing
      
      1. Avoid forever loop for getting parameters of erase.
      2. replace' img_b' by 'img_c', because it indicates the channel.
      3. replace v = torch.rand([img_c, h, w]) by v = torch.empty([img_c, h, w], dtype=torch.float32).normal_(). Normally distributed achieves better performance.
      
      * add test
      
      * Update test_transforms.py
      
      * Update transforms.py
      
      * Update test_transforms.py
      
      * Update transforms.py
      
      * Update functional.py
      34833427
    • Shahriar's avatar
      Added c++ introduction in readme (#1098) · 957f5145
      Shahriar authored
      957f5145
  11. 05 Jul, 2019 2 commits
  12. 04 Jul, 2019 6 commits
  13. 03 Jul, 2019 2 commits
  14. 02 Jul, 2019 2 commits
    • yaysummeriscoming's avatar
      Fixed width multiplier (#1005) · 8350645b
      yaysummeriscoming authored
      * Fixed width multiplier
      
      Layer channels are now rounded to a multiple of 8, as per the official tensorflow implementation.  I found this fix when looking through: https://github.com/d-li14/mobilenetv2.pytorch
      
      * Channel multiple now a user configurable option
      
      The official tensorflow slim mobilenet v2 implementation rounds the number of channels in each layer to a multiple of 8.  This is now user configurable - 1 turns off rounding
      
      * Fixed whitespace error
      
      Fixed error: ./torchvision/models/mobilenet.py:152:1: W293 blank line contains whitespace
      8350645b
    • Francisco Massa's avatar
      Adds video reading / saving functionalities (#1039) · d293c4c5
      Francisco Massa authored
      * WIP
      
      * WIP
      
      * Add some documentation
      
      * Improve tests and add GC collection
      
      * [WIP] add timestamp getter
      
      * Bugfixes
      
      * Improvements and travis
      
      * Add audio fine-grained alignment
      
      * More doc
      
      * Remove unecessary file
      
      * Remove comment
      
      * Lazy import av
      
      * Remove hard-coded constants for the test
      
      * Return info stats from read
      
      * Fix for Python-2
      d293c4c5
  15. 01 Jul, 2019 1 commit
  16. 29 Jun, 2019 1 commit
  17. 28 Jun, 2019 2 commits
  18. 26 Jun, 2019 3 commits
  19. 25 Jun, 2019 1 commit
  20. 24 Jun, 2019 3 commits