- 21 Aug, 2023 1 commit
-
-
Illia Vysochyn authored
-
- 16 Mar, 2023 1 commit
-
-
Nicolas Hug authored
-
- 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
-
-
Aditya Oke authored
* Just start adding mere copy paste * Replace d with t and D with T * Align swin transformer video to image a bit * Rename d -> t * align with 2d impl * align with 2d impl * Add helpful comments and config for 3d * add docs * Add docs * Add configurations * Add docs * Fix bugs * Fix wrong edit * Fix wrong edit * Fix bugs * Fix bugs * Fix as per fx suggestions * Update torchvision/models/video/swin_transformer.py * Fix as per fx suggestions * Fix expect files and code * Update the expect files * Modify video swin * Add min size and min temporal size, num params * Add flops and size * Fix types * Fix url recipe Co-authored-by:Yosua Michael Maranatha <yosuamichael@fb.com>
-
- 23 Sep, 2022 1 commit
-
-
Ponku authored
* Added maxvit architecture and tests * rebased + addresed comments * Revert "rebased + addresed comments" This reverts commit c5b28398cd48d2f3403c7c8eeefbaba9df05fcfe. * Re-added model changes after revert * aligned with partial original implementation * removed submitit script fixed lint * mypy fix for too many arguments * updated old tests * removed per batch lr scheduler and seed setting * removed ontap * added docs, validated weights * fixed test expect, moved shape assertions in the begging for torch.fx compatibility * mypy fix * lint fix * added legacy interface * added weight link * updated docs * Update references/classification/train.py Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> * Update torchvision/models/maxvit.py Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> * adressed comments * update ra_maginuted and augmix_severity default values * adressed some comments * remove input_channels parameter Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
- 19 Aug, 2022 1 commit
-
-
Sophia Zhi authored
* S3D initial commit * add model builder code and docstrings * change classifier submodule, populate weights enum * fix change of block args from List[List[int]] to ints * add VideoClassification to transforms * edit weights url for testing, add s3d to models.video init * norm_layer changes * norm_layer and args fix * Overwrite default dropout * Remove docs from internal submodules. * Fix tests * Adding documentation. * Link doc from main models.rst * Fix min_temporal_size * Adding crop/resize parameters in references script * Release weights. * Refactor dropout. * Adding the weights table in the doc Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> Co-authored-by:
Vasilis Vryniotis <vvryniotis@fb.com>
-
- 10 Aug, 2022 2 commits
-
-
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.
-
- 21 Jul, 2022 1 commit
-
-
Mayanand authored
Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
- 24 Jun, 2022 1 commit
-
-
Vasilis Vryniotis authored
* Adding MViT v2 architecture (#6105) * Adding mvitv2 architecture * Fixing memory issues on tests and minor refactorings. * Adding input validation * Adding docs and minor refactoring * Add `min_temporal_size` in the supported meta-data. * Switch Tuple[int, int, int] with List[int] to support easier the 2D case * Adding more docs and references * Change naming conventions of classes to follow the same pattern as MobileNetV3 * Fix test breakage. * Update todos * Performance optimizations. * Add support to MViT v1 (#6179) * Switch implementation to v1 variant. * Fix docs * Adding back a v2 pseudovariant * Changing the way the network are configured. * Temporarily removing v2 * Adding weights. * Expand _squeeze/_unsqueeze to support arbitrary dims. * Update references script. * Fix tests. * Fixing frames and preprocessing. * Fix std/mean values in transforms. * Add permanent Dropout and update the weights. * Update accuracies. * Fix documentation * Remove unnecessary expected file. * Skip big model test * Rewrite the configuration logic to reduce LOC. * Fix mypy
-
- 14 Jun, 2022 1 commit
-
-
Nicolas Hug authored
* Add new .. betastatus:: directive to document Beta APIs * Also add it for the fine-grained video API * Add directive for all builders and pages of Detection module * Also segmentation and video models
-
- 10 Jun, 2022 1 commit
-
-
Nicolas Hug authored
-
- 20 May, 2022 1 commit
-
-
puhuk authored
* To resolve issue #5964 Add note for resnet architecture * Update resnet.py * Update resnet.py * Update resnet.rst * Fix stylings * Add the same notes on model builders * Improve description * Apply the change everywhere * Remove trailing space Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
- 19 May, 2022 1 commit
-
-
Joao Gomes authored
* add swin_s and swin_b variants * fix swin_b params * fix n parameters and acc numbers * adding missing acc numbers * apply ufmt * Updating `_docs` to reflect training recipe * Fix exted for swin_b Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
- 18 May, 2022 1 commit
-
-
Nicolas Hug authored
* Doc revamp for optical flow models * Some more
-
- 17 May, 2022 1 commit
-
-
F-G Fernandez authored
* docs: Added quantized ResNeXt to new docs * docs: Fixed docstring Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
- 16 May, 2022 2 commits
-
-
Zhiqiang Wang authored
-
Abhijit Deo authored
* added note * quantize = True higlighted in the note. * Keep "Large" in docstring Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
- 13 May, 2022 2 commits
-
-
Hu Ye authored
* Create resnet_quant.rst * add resnet quant * refactor docs * Minor fix * Nit Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
Yassine Alouini authored
* [DOC] Add quantized inception updated documentation. * Add missing file. * Apply suggestions from code review [ENH] Improve doc thanks to various code review comments. Co-authored-by:
Aditya Oke <47158509+oke-aditya@users.noreply.github.com> Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com> Co-authored-by:
Aditya Oke <47158509+oke-aditya@users.noreply.github.com> Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com>
-
- 12 May, 2022 3 commits
-
-
Vasilis Vryniotis authored
* Remove old "minimum input size" from docstrings. * Remove "currently only XYZ weights available" * Fix description of wide_resnet101_2 * Make display license URLs as links. * Clarify the order of dims of min_size. * Remove lengthy keypoint_names from meta-table.
-
Lezwon Castelino authored
* added quantized mobilenetv2 docs * remove quotes Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
Vasilis Vryniotis authored
-
- 10 May, 2022 1 commit
-
-
Nicolas Hug authored
* Add Docs for QuantizedGoogleNet * ufmt * Use explicit _QuantizedWeights or _Weights suffix
-
- 09 May, 2022 2 commits
-
-
Nicolas Hug authored
-
Nicolas Hug authored
* Fixing AlexNet references * Fix doc rendering
-
- 05 May, 2022 1 commit
-
-
Aditya Oke authored
* Add mask rcnn to instance segmentation * Add docs a use nicolas suggestion * remov param * remov docsstring, edit docs * Add one section level Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
- 04 May, 2022 2 commits
-
-
Nicolas Hug authored
* Document Keypoint RCNN separately * Move Keypoint detection into its own section * ufmt
-
Joao Gomes authored
* Remove references to non-existing weights * Update torchvision/models/mnasnet.py Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com> * Update torchvision/models/mnasnet.py Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com> * apply ufmt Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com>
-
- 03 May, 2022 8 commits
-
-
puhuk authored
* docs: Added SSD300 to the new doc To resolve #5897 * Minor fixes * ufmt Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
Joao Gomes authored
* updating mnasnet docs * fix bug * fix lint * fix end of file * fix linting * Add missing weights Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
Zhiqiang Wang authored
* Update ShuffleNetV2 docstring * Add entry for ShuffleNet V2 in new doc * Minor fixes Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
Abhijit Deo authored
* init * init * Update torchvision/models/detection/faster_rcnn.py Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> * Update torchvision/models/detection/faster_rcnn.py Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com>
-
Aditya Oke authored
* Add inception * Fix googlenet bug * Fix bug add file * Update torchvision/models/inception.py Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
Aditya Oke authored
* add docs * Small fix * Update docs/source/models/lraspp.rst Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
F-G Fernandez authored
* docs: Added FCN to new doc * docs: Updated docstring * docs: Fixed docstring * Update docs/source/models/fcn.rst Co-authored-by:
Aditya Oke <47158509+oke-aditya@users.noreply.github.com> * Apply suggestions from code review Co-authored-by:
FG Fernandez <26927750+frgfm@users.noreply.github.com> Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com> Co-authored-by:
Aditya Oke <47158509+oke-aditya@users.noreply.github.com>
-
F-G Fernandez authored
* docs: Added SSDLite to new doc * docs: Updated docstring * docs: Fixed docstring * Apply suggestions from code review Co-authored-by:
FG Fernandez <26927750+frgfm@users.noreply.github.com> Co-authored-by:
Nicolas Hug <contact@nicolas-hug.com>
-
- 28 Apr, 2022 2 commits
-
-
Aditya Oke authored
* Start adding * Finish adding docs * Fix other bugs * Update torchvision/models/mobilenetv3.py * Update torchvision/models/mobilenetv3.py Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
Abhijit Deo authored
* init * minor change * typo Co-authored-by:Nicolas Hug <contact@nicolas-hug.com>
-
- 27 Apr, 2022 1 commit
-
-
Nicolas Hug authored
Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-