"vscode:/vscode.git/clone" did not exist on "69d40773dc4ed86643820c21a8a880e4d074a46e"
  1. 21 Aug, 2019 1 commit
  2. 12 Aug, 2019 1 commit
  3. 08 Aug, 2019 4 commits
  4. 07 Aug, 2019 3 commits
  5. 06 Aug, 2019 4 commits
  6. 05 Aug, 2019 3 commits
  7. 04 Aug, 2019 1 commit
  8. 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
  9. 01 Aug, 2019 2 commits
  10. 31 Jul, 2019 3 commits
  11. 26 Jul, 2019 5 commits
  12. 24 Jul, 2019 3 commits
  13. 23 Jul, 2019 5 commits
  14. 22 Jul, 2019 1 commit
  15. 19 Jul, 2019 3 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