- 25 Aug, 2023 1 commit
-
-
Nicolas Hug authored
-
- 24 Aug, 2023 1 commit
-
-
Nicolas Hug authored
-
- 23 Aug, 2023 1 commit
-
-
Nicolas Hug authored
Co-authored-by:
vfdev <vfdev.5@gmail.com> Co-authored-by:
Philip Meier <github.pmeier@posteo.de>
-
- 22 Aug, 2023 1 commit
-
-
Nicolas Hug authored
Co-authored-by:Philip Meier <github.pmeier@posteo.de>
-
- 21 Aug, 2023 1 commit
-
-
Illia Vysochyn authored
-
- 18 Aug, 2023 3 commits
-
-
Nicolas Hug authored
-
Nicolas Hug authored
-
Nicolas Hug authored
-
- 17 Aug, 2023 1 commit
-
-
Nicolas Hug authored
-
- 16 Aug, 2023 2 commits
-
-
Philip Meier authored
-
Nicolas Hug authored
Co-authored-by:Philip Meier <github.pmeier@posteo.de>
-
- 15 Aug, 2023 2 commits
-
-
Nicolas Hug authored
Co-authored-by:vfdev <vfdev.5@gmail.com>
-
Nicolas Hug authored
-
- 14 Aug, 2023 1 commit
-
-
Minliang Lin authored
-
- 04 Aug, 2023 1 commit
-
-
Nicolas Hug authored
Co-authored-by:Philip Meier <github.pmeier@posteo.de>
-
- 02 Aug, 2023 1 commit
-
-
Nicolas Hug authored
-
- 01 Aug, 2023 3 commits
-
-
Nicolas Hug authored
-
Nicolas Hug authored
-
Philip Meier authored
-
- 31 Jul, 2023 2 commits
-
-
Nicolas Hug authored
-
Nicolas Hug authored
-
- 28 Jul, 2023 1 commit
-
-
Philip Meier authored
Co-authored-by:
Nicolas Hug <nicolashug@meta.com> Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com>
-
- 27 Jul, 2023 1 commit
-
-
Nicolas Hug authored
Co-authored-by:
vfdev <vfdev.5@gmail.com> Co-authored-by:
Philip Meier <github.pmeier@posteo.de>
-
- 24 May, 2023 2 commits
-
-
Philip Meier authored
-
Minh-Long Luu (刘明龙) authored
Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
- 14 Apr, 2023 1 commit
-
-
Philip Meier authored
-
- 06 Apr, 2023 1 commit
-
-
Philip Meier authored
-
- 24 Feb, 2023 4 commits
-
-
Philip Meier authored
-
Philip Meier authored
Co-authored-by:
vfdev <vfdev.5@gmail.com> Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com>
-
mpearce25 authored
Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
Philip Meier authored
-
- 23 Feb, 2023 1 commit
-
-
Philip Meier authored
Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
- 13 Feb, 2023 1 commit
-
-
Nicolas Hug authored
Co-authored-by:
Philip Meier <github.pmeier@posteo.de> Co-authored-by:
vfdev <vfdev.5@gmail.com>
-
- 11 Jan, 2023 1 commit
-
-
Philip Meier authored
* fix typos throughout the code base * fix grammar * revert formatting changes to gallery * revert 'an uXX' * remove 'number of the best'
-
- 17 Nov, 2022 1 commit
-
-
Bruno Korbar authored
* Test: add backend parameter * VideoReader object now works on backend * Frame reading now passes * Keyframe seek now passes * Pyav backend now supports metadata * changes in test to reflect GPU decoder change * Linter? * Test GPU output * Addressing Joao's comments * lint * lint * Revert "Test GPU output" This reverts commit f62e955d7dc81bcb23b40d58ea75413b9b62e76d. * lint? * lint * lint * Address issues in build? * hopefully doc fix * Arrgh * arrgh * fix typos * fix input options * remove read from memory option in pyav * skip read from mem test for gpu and pyab be * fix test * remove unused import * Hack to get reading from memory work with pyav * patch audio test * gallery change in a hope that docs won't break * check video decoder inside io * adding missing lib loading code * remove unused input Co-authored-by:
Bruno Korbar <bkorbar@quansight.com> Co-authored-by:
Joao Gomes <jdsgomes@fb.com>
-
- 15 Jul, 2022 1 commit
-
-
Alexander Jipa authored
Co-authored-by:Alexander Jipa <azzhipa@amazon.com>
-
- 14 Jun, 2022 1 commit
-
-
Nicolas Hug authored
-
- 13 Jun, 2022 1 commit
-
-
Lenz authored
* Added elastic augment * ufmt formatting * updated comments * fixed circular dependency issue and bare except error * Fixed three type checking errors in functional_tensor.py * ufmt formatted * changed elastic_deformation to a more common implementation Implementation uses alpha and sigma to control strength and smoothness of the displacement vectors in elastic_deformation instead of control_point_spacings and sigma. * ufmt formatting * Some performance updates Put random offset vectors to device before gaussian_blur is applied speeds it up 3-fold. * fixed type error * fixed again a type error * Update torchvision/transforms/functional_tensor.py Co-authored-by:
vfdev <vfdev.5@gmail.com> * Added some requested changes - pil image support similar to GaussianBlur - changed interpolation arg to InterpolationMode - added a wrapper in torchvision.transforms.functional.py that gets called by the class in transforms.py -renamed it to ElasticTransform - handled sigma = 0 case * added img docstring * added some tests * Updated tests and the code * Added the requested changes to the arguments of F.elastic_transform Added random_state and displacement as arguments to F.elastic_transform * fixed the type error * Fixed tests and docs * implemented requested changes Changes: 1) alpha AND sigma OR displacement must be given as arguments to transforms.functional_tensor.elastic_transform instead of alpha AND sigma AND displacement 2) displacements are accepted in transforms.functional.elastic_transform as np.array and torch.Tensor instead of only accepting torch.Tensor * ufmt formatting * trochscript error resolved replaced torch.from_numpy() to torch.Tensor() to make it compatible to torchscript * revert to torch.from_numpy() * updated argument checks and errors - In F.elastic_transform added check to see if both user inputs img and displacement are either of type PIL Image and ndarray or both of type tensor. - In F_t.elastic_transform added check if alpha and sigma are None if displacement is given or vice versa. * fixed seed error changed torch.seed to torch.manual_seed in F_t.elastic_transform * Reverted displacement type and other cosmetics * Other minor improvements * changed gaussian_blur filter size changed gaussian_blur filter size from 4 * int(sigma) + 1 to int(8 * sigma + 1) to make it consistent with ernestums implementation * resolved merge error * Revert "resolved merge error" This reverts commit 6a4a4e74ff4d078e2c2753d359185f9a81c415d0. * resolve merge error * ufmt formatted * ufmt formated once again.. * fixed unsupported operand error * Update API and removed random_state from functional part * Added default values * Added ElasticTransform to gallery and updated the docstring * Updated gallery and added _log_api_usage_once BTW, matplotlib.pylab is deprecated * Updated gallery transforms code * Updates according to review Co-authored-by:
vfdev <vfdev.5@gmail.com>
-
- 23 May, 2022 1 commit
-
-
Vasilis Vryniotis authored
* Remove `(N, T, H, W, C) => (N, T, C, H, W)` conversion on presets * Update docs. * Fix the tests * Use `output_format` for `read_video()` * Use `output_format` for `Kinetics()` * Adding input descriptions on presets
-
- 17 May, 2022 1 commit
-
-
Vasilis Vryniotis authored
* Update the preprocessing decription for RAFT. * Fixing incorrect usage of models. * Fixing the content of viz utils * Addressing review comments
-