- 28 Aug, 2019 1 commit
-
-
JMistele authored
Fixed video labelling after `subset` call for HMDB51 dataset (hmdb51.py) (EDIT: UCF101 as well) (#1240) * Fixed video labelling after subset for HMDB51 dataset * Fixed video labelling after subset for HMDB51 dataset Co-authored-by:
Eric Tang <etang21@stanford.edu> Co-authored-by:
Ryan Cao <ryancao@stanford.edu> * UCF 101 Labeling fixes - Analogous fix to HMDB51 to maintain correct labels after the train-test split - Additional change to the `select_fold` method in `ucf101.py` to correctly reflect the annotation format Co-authored-by:
Ryan Cao <ryancao@stanford.edu> Co-authored-by:
Eric Tang <etang21@stanford.edu>
-
- 21 Aug, 2019 1 commit
-
-
Vincent QB authored
-
- 12 Aug, 2019 1 commit
-
-
Gu Wang authored
* explain lr and batch size in references/detection/train.py * fix typo
-
- 08 Aug, 2019 4 commits
-
-
Edward Z. Yang authored
Signed-off-by:Edward Z. Yang <ezyang@fb.com>
-
Edward Z. Yang authored
* Actually upload wheels (please port to master) Signed-off-by:
Edward Z. Yang <ezyang@fb.com> * Propagate more environment variables. Signed-off-by:
Edward Z. Yang <ezyang@fb.com> * Put macos binaries in the right place Signed-off-by:
Edward Z. Yang <ezyang@fb.com>
-
Edward Z. Yang authored
Signed-off-by:Edward Z. Yang <ezyang@fb.com>
-
Edward Z. Yang authored
Add uploading support, make CUDA builds actually work.
-
- 07 Aug, 2019 3 commits
-
-
Edward Z. Yang authored
Following a similar line of inquiry to pytorch/audio#217
-
Myosaki authored
`self.fc1(x)` converts the shape of `x` into "N x 1024", and `self.fc2(x)` converts into "N x num_classes". By adding `print(x.shape)` under each comment line, the console displays as follows (batch_size is 1): ```text torch.Size([1, 2048]) torch.Size([1, 1024]) torch.Size([1, 1024]) torch.Size([1, 1024]) torch.Size([1, 1000]) ```
-
Edward Z. Yang authored
Signed-off-by:Edward Z. Yang <ezyang@fb.com>
-
- 06 Aug, 2019 4 commits
-
-
Francisco Massa authored
-
Francisco Massa authored
* Add docs for video models * Fix docstrings for resnet and vgg
-
Edward Z. Yang authored
Signed-off-by:Edward Z. Yang <ezyang@fb.com>
-
Francisco Massa authored
-
- 05 Aug, 2019 3 commits
-
-
Gu Wang authored
-
Francisco Massa authored
-
Edward Z. Yang authored
Signed-off-by:Edward Z. Yang <ezyang@fb.com>
-
- 04 Aug, 2019 1 commit
-
-
Francisco Massa authored
* [WIP] Minor cleanups on R3d * Move all models to video/resnet.py * Remove old files * Make tests less memory intensive * Lint * Fix typo and add pretraing arg to training script
-
- 02 Aug, 2019 1 commit
-
-
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
-
- 01 Aug, 2019 2 commits
-
-
Bruno Korbar authored
-
Francisco Massa authored
* Add docs to UCF101 and HMDB51 datasets * Remove extra line * Lint
-
- 31 Jul, 2019 3 commits
-
-
Francisco Massa authored
* Move RandomClipSampler to references * Lint and bugfix
-
Francisco Massa authored
Also add docs
-
Francisco Massa authored
* Copy classification scripts for video classification * Initial version of video classification * add version * Training of r2plus1d_18 on kinetics work Gives even slightly better results than expected, with 57.336 top1 clip accuracy. But we count some clips twice in this evaluation * Cleanups on training script * Lint * Minor improvements * Remove some hacks * Lint
-
- 26 Jul, 2019 5 commits
-
-
Francisco Massa authored
* Optimize read_video_timestamps for some formats * Add some tests
-
Philip Meier authored
* fix stl10 * fix lsun
-
Francisco Massa authored
* Miscellaneous fixes and improvements * Guard against videos without video stream * Fix lint * Add test for packed b-frames videos * Fix missing import
-
Bruno Korbar authored
* [0.4_video] models - initial commit * addressing fmassas inline comments * pep8 and flake8 * simplify "hacks" * sorting out latest comments * nitpick * Updated tests and constructors * Added docstrings - ready to merge
-
Philip Meier authored
* introduced function to verify str arguments * flake8 * added FIXME to VOC * Fixed error message * added test for verify_str_arg * cleanup todos * added option for custom error message * fix VOC * fixed Caltech
-
- 24 Jul, 2019 3 commits
-
-
Francisco Massa authored
* Add HMDB51 and UCF101 * Remove debug code
-
Francisco Massa authored
Also extend video saving to support different codecs and options. Notably, we can now save with lossless compression
-
Francisco Massa authored
* Properly order videos with B-frames * seek doesn't seek to pts, but dts Find a way of overcoming this problem.
-
- 23 Jul, 2019 5 commits
-
-
Francisco Massa authored
Also make logging less verbose
-
Francisco Massa authored
-
Shahriar authored
* Replaced asserts with TORCH_CHECK * Fixed an error
-
Kyryl Truskovskyi authored
* in_channels_stage2 from backbone.inplanes * remove type for backward compatible
-
Shahriar authored
-
- 22 Jul, 2019 1 commit
-
-
Philip Meier authored
-
- 19 Jul, 2019 2 commits
-
-
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
-
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
-