1. 12 Aug, 2019 1 commit
  2. 08 Aug, 2019 4 commits
  3. 07 Aug, 2019 3 commits
  4. 06 Aug, 2019 4 commits
  5. 05 Aug, 2019 3 commits
  6. 04 Aug, 2019 1 commit
  7. 02 Aug, 2019 1 commit
    • Francisco Massa's avatar
      Expose docs for io and ops package (#1189) · 4ec38d49
      Francisco Massa authored
      * Expose docs for io and ops package
      
      Had do modify the docstrings to use Napoleon NumPy style, because Napoleon Google Style doesn't support multiple return arguments
      
      * Add video section
      4ec38d49
  8. 01 Aug, 2019 2 commits
  9. 31 Jul, 2019 3 commits
  10. 26 Jul, 2019 5 commits
  11. 24 Jul, 2019 3 commits
  12. 23 Jul, 2019 5 commits
  13. 22 Jul, 2019 1 commit
  14. 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