- 16 Aug, 2022 3 commits
-
-
Nicolas Hug authored
-
Philip Meier authored
* port `RandomShortestSize` from detection references to prototype transforms * mypy * add test
-
Philip Meier authored
* fix TenCrop * use dispatchers for RandomPhotometricDistort * add convert_color_space dispatcher and use it in conversion transforms * fix convert_color_space naming scheme * add to_color_space method to Image feature * remove TODO from BoundingBox.to_format() * fix test * fix imports * fix passthrough * remove apply_recursively in favor of pytree * refactor BatchMultiCrop
-
- 15 Aug, 2022 9 commits
-
-
Andrey Talman authored
-
Andrey Talman authored
-
Andrey Talman authored
-
Andrey Talman authored
-
Philip Meier authored
* port ScaleJitter from detection reference to prototype transforms * add test * use MagicMock as sentinel
-
vfdev authored
* [proto] Clean-up Label.to_categories * Fixed flake8
-
Shantanu authored
* Use --no-implicit-optional for type checking This is needed for PEP 484 compliant type checking (as of 2018). mypy will change its defaults soon. See https://github.com/python/mypy/issues/9091 * forcing CI rerun Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Philip Meier authored
* disable download test for Places365 * add xfail test for broken download servers * add more comments * mark SBU download as failing Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
vfdev authored
* [proto] Another attemp to rewrite RandomCrop * Fixed implementation issue and updated tests
-
- 12 Aug, 2022 3 commits
-
-
Philip Meier authored
* shlex -> shutil * [SKIP CI] * [skip ci] Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Andrey Talman authored
* Testing conda metapackage * Testing * Testing pytorch-cuda * Testing * Testing * Testing * Testing * Testing * Using new metapackage * Testing * Simplifing logic * Further simplifying
-
Federico Pozzi authored
-
- 11 Aug, 2022 3 commits
-
-
vfdev authored
* [proto] Compose keeps BC * Compose -> Compose(Transform)
-
Tinson Lai authored
* Fix generated CMake file * Make optional dependencies consistent Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Vasilis Vryniotis authored
* Fix typing jit issue on RoIPool and RoIAlign * Fix nit. * Address code review comments.
-
- 10 Aug, 2022 4 commits
-
-
vfdev authored
* [proto] Use F.pad in RandomCrop * Update torchvision/prototype/transforms/_geometry.py
-
Local State authored
* init submit * fix typo * support ufmt and mypy * fix 2 unittest errors * fix ufmt issue * Apply suggestions from code review Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> * unify codes * fix meshgrid indexing * fix a bug * fix type check * add type_annotation * add slow model * fix device issue * fix ufmt issue * add expect pickle file * fix jit script issue * fix type check * keep consistent argument order * add support for pretrained_window_size * avoid code duplication * a better code reuse * update window_size argument * make permute and flatten operations modular * add PatchMergingV2 * modify expect.pkl * use None as default argument value * fix type check * fix indent * fix window_size (temporarily) * remove "v2_" related prefix and add v2 builder * remove v2 builder * keep default value consistent with official repo * deprecate dropout * deprecate pretrained_window_size * fix dynamic padding edge case * remove unused imports * remove doc modification * Revert "deprecate dropout" This reverts commit 8a13f932815ae25655c07430d52929f86b1ca479. * Revert "fix dynamic padding edge case" This reverts commit 1c7579cb1bd7bf2f0f94907f39bee6ed707a97a8. * remove unused kwargs * add downsample docs * revert block default value * revert argument order change * explicitly specify start_dim * add small and base variants * add expect files and slow_models * Add model weights and documentation for swin v2 * fix lint * fix end of files line Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> Co-authored-by:
Joao Gomes <jdsgomes@fb.com>
-
Vasilis Vryniotis authored
* Extending to support MViTv2 * Fix docs, mypy and linter * Refactor the relative positional code. * Code refactoring. * Rename vars. * Update docs. * Replace assert with exception. * Updat docs. * Minor refactoring. * Remove the square input limitation. * Moving methods around. * Modify the shortcut in the attention layer. * Add ported weights. * Introduce a `residual_cls` config on the attention layer. * Make the patch_embed kernel/padding/stride configurable. * Apply changes from code-review. * Remove stale todo.
-
vfdev authored
* [proto] Fixed issue with `F.pad` from RandomZoomOut * Fixed failing tests * Fixed wrong type hint * Fixed fill=None in pad_image_pil * Try to support fill=None in functional * Code formatting
-
- 09 Aug, 2022 2 commits
- 08 Aug, 2022 4 commits
-
-
Vasilis Vryniotis authored
* Expose on Hub the public methods of the registration API * Limit methods and update docs. * Update references to use the new Model Registration API
-
Vasilis Vryniotis authored
* Expose on Hub the public methods of the registration API * Limit methods and update docs.
-
Vasilis Vryniotis authored
* Make test precision stricter for Classification * Update classification threshold. * Update quantized classification threshold.
-
vcwai authored
Update `RandomPhotometricDistort` `__init__` argument to correct types.
-
- 03 Aug, 2022 4 commits
-
-
Ponku authored
* added SceneFLow variant datasets * Changed split name to variant name * removed trailing commented code line
-
Vasilis Vryniotis authored
-
Vasilis Vryniotis authored
Summary: provider callback uses video sampler to copy/scale input frames using sws_scale function, added option to use av_image_copy to copy image planes in case if sws_getContext fails (required to support AV_PIX_FMT_PAL8 pixel format) Reviewed By: ovoietsa Differential Revision: D36466749 fbshipit-source-id: 1674f98a362db835d147800c24bdda6f82d2f8ff Co-authored-by:Sergiy Bilobrov <sergiy@fb.com>
-
Vasilis Vryniotis authored
Summary: Resolves https://www.internalfb.com/tasks/?t=128004042 Caused by TorchVision's PR at https://github.com/pytorch/vision/pull/6322 which was in response to a change on PyTorch Core at https://github.com/pytorch/pytorch/pull/82032 Reviewed By: fmassa Differential Revision: D38383266 fbshipit-source-id: 3f0ebd04a610031c4720123d1869a851f76455cd
-
- 02 Aug, 2022 3 commits
-
-
Ponku authored
* Broken down PR(#6269). Added an additional dataset * Removed some types. Store None instead of "". Merged test util functions. * minor mypy fixes. minor doc fixes * reformated docstring * Added additional line-skips
-
Aditya Oke authored
* Fix bug in calculating cIoU for unequal sizes * Remove comment * what the epsilon? * Fixing DIoU * Optimization by Francisco. * Fix the expected values on CompleteBoxIoU * Apply suggestions from code review Co-authored-by:
Abhijit Deo <72816663+abhi-glitchhg@users.noreply.github.com> * Adding cartesian product test. * remove static Co-authored-by:
Vasilis Vryniotis <vvryniotis@fb.com> Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> Co-authored-by:
Abhijit Deo <72816663+abhi-glitchhg@users.noreply.github.com>
-
Abhijit Deo authored
* cleaning up box decoding * minor nits * cleanup for box encoding also addded.
-
- 01 Aug, 2022 2 commits
-
-
Vasilis Vryniotis authored
-
Vasilis Vryniotis authored
* Model registration mechanism. * Add overwrite options to the dataset prototype registration mechanism. * Adding example models. * Fix module filtering * Fix linter * Fix docs * Make name optional if same as model builder * Apply updates from code-review. * fix minor bug * Adding getter for model weight enum * Support both strings and callables on get_model_weight. * linter fixes * Fixing mypy. * Renaming `get_model_weight` to `get_model_weights` * Registering all classification models. * Registering all video models. * Registering all detection models. * Registering all optical flow models. * Fixing mypy. * Registering all segmentation models. * Registering all quantization models. * Fixing linter * Registering all prototype depth perception models. * Adding tests and updating existing tests. * Fix linters * Fix tests. * Add beta annotation on docs. * Fix tests. * Apply changes from code-review. * Adding documentation. * Fix docs.
-
- 31 Jul, 2022 1 commit
-
-
Sergii Dymchenko authored
-
- 29 Jul, 2022 1 commit
-
-
vfdev authored
-
- 28 Jul, 2022 1 commit
-
-
Joao Gomes authored
[FBcode->GH] Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/81946 Reviewed By: linbinyu Differential Revision: D38056789 fbshipit-source-id: 6a2e2d3308c9eec5b2230e153c5e2863b3b5bf7b Co-authored-by:
Sim Sun <simsun@fb.com>
-