1. 26 Jul, 2019 4 commits
  2. 24 Jul, 2019 3 commits
  3. 23 Jul, 2019 5 commits
  4. 22 Jul, 2019 1 commit
  5. 19 Jul, 2019 4 commits
    • Vinh Nguyen's avatar
      Fix apex distributed training (#1124) · c187c2b1
      Vinh Nguyen authored
      * adding mixed precision training with Apex
      
      * fix APEX default optimization level
      
      * adding python version check for apex
      
      * fix LINT errors and raise exceptions if apex not available
      
      * fixing apex distributed training
      
      * fix throughput calculation: include forward pass
      
      * remove torch.cuda.set_device(args.gpu) as it's already called in init_distributed_mode
      
      * fix linter: new line
      
      * move Apex initialization code back to the beginning of main
      
      * move apex initialization to before lr_scheduler - for peace of mind. Though, doing apex initialization after lr_scheduler seems to work fine as well
      c187c2b1
    • Francisco Massa's avatar
      Add VideoClips and Kinetics dataset (#1077) · 5d1372c0
      Francisco Massa authored
      * Add VideoClips and Kinetics dataset
      
      * Lint + add back missing line
      
      * Adds ClipSampler following Bruno comment
      
      * Change name following Bruno's suggestion
      
      * Enable specifying a target framerate
      
      * Fix test_io for new interface
      
      * Add comment mentioning drop_last behavior
      
      * Make compute_clips more robust
      
      * Flake8
      
      * Fix for Python2
      5d1372c0
    • Philip Meier's avatar
      Always pass transform and target_transform to abstract dataset (#1126) · 2b81ad8c
      Philip Meier authored
      * fixed call to the VisionDataset constructor
      
      * change call from keyword arguments to positional
      
      * changed order of arguments
      
      * removed transforms argument once again
      
      * Fixed call to constructor of parent class
      
      * fixed LSUN
      
      * fixed Caltech256
      2b81ad8c
    • apache2046's avatar
      Fix the old flatten method which use the size(0) to caculate the batch size,... · 2cae9509
      apache2046 authored
      Fix the old flatten method which use the size(0) to caculate the batch size, the old method will intruduce Gather opertion in the onnx output, which will faild parsed by tensorRT 5.0 (#1134)
      
      2cae9509
  6. 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
  7. 16 Jul, 2019 1 commit
  8. 15 Jul, 2019 2 commits
  9. 12 Jul, 2019 4 commits
  10. 11 Jul, 2019 1 commit
  11. 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
  12. 09 Jul, 2019 2 commits
  13. 08 Jul, 2019 1 commit
  14. 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
  15. 05 Jul, 2019 2 commits
  16. 04 Jul, 2019 6 commits