1. 27 Sep, 2022 2 commits
  2. 26 Sep, 2022 3 commits
  3. 23 Sep, 2022 9 commits
    • Philip Meier's avatar
      add segmentation reference consistency tests (#6591) · 7046e56f
      Philip Meier authored
      
      
      * add segmentation reference consistency tests
      
      * fall back to smoke tests for resize
      
      * add test for RandomCrop
      Co-authored-by: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
      7046e56f
    • Ambuj Pawar's avatar
      DOC: add limitation of decode_jpeg in the function docstring (#6637) · 0a946d5b
      Ambuj Pawar authored
      
      
      * add limitation of decode_jpeg in the function docstring
      
      * undo unwanted changes in decode_png
      Co-authored-by: default avatarAmbuj Pawar <your_email@abc.example>
      0a946d5b
    • Ponku's avatar
      Add CREStereo weights. (#6629) · 4c66712f
      Ponku authored
      * added crestereo author weights
      
      * update weights name
      
      * synced fl-all metric
      
      * changed resize size config param name
      
      * extended weight sets
      
      * changed weight link
      4c66712f
    • Ponku's avatar
      Add stereo train loop (#6605) · 10dafd9b
      Ponku authored
      
      
      * crestereo draft implementation
      
      * minor model fixes. positional embedding changes.
      
      * aligned base configuration with paper
      
      * Adressing comments
      
      * Broke down Adaptive Correlation Layer. Adressed some other commets.
      
      * adressed some nits
      
      * changed search size, added output channels to model attrs
      
      * changed weights naming
      
      * changed from iterations to num_iters
      
      * removed _make_coords, adressed comments
      
      * fixed jit test
      
      * added script files
      
      * added cascaded inference evaluation
      
      * added optimizer option
      
      * minor changes
      
      * Update references/depth/stereo/train.py
      Co-authored-by: default avatarvfdev <vfdev.5@gmail.com>
      
      * adressed some comments
      
      * change if-else to dict
      
      * added manual resizing for masks and disparities during evaluation
      
      * minor fixes after previous changes
      
      * changed dataloader to be initialised once
      
      * added distributed changes
      
      * changed loader logic
      
      * updated eval script to generate weight API like logs
      
      * improved support for fine-tuning / training resume
      
      * minor changes for finetuning
      
      * updated with transforms from main
      
      * logging distributed deadlock fix
      
      * lint fix
      
      * updated metrics
      
      * weights API log support
      
      * lint fix
      
      * added readme
      
      * updated readme
      
      * updated readme
      
      * read-me update
      
      * remove hardcoded paths. improved valid dataset selection and sync
      
      * removed extras from gitignore
      Co-authored-by: default avatarJoao Gomes <jdsgomes@fb.com>
      Co-authored-by: default avatarvfdev <vfdev.5@gmail.com>
      Co-authored-by: default avatarYosuaMichael <yosuamichaelm@gmail.com>
      10dafd9b
    • Philip Meier's avatar
      784ee2b8
    • Vasilis Vryniotis's avatar
      [prototype] Align and Clean up transform types (#6627) · f725901d
      Vasilis Vryniotis authored
      
      
      * Align and Clean up transform types
      
      * Move type definitions to `_utils.py`
      
      * fixing error message on tests
      
      * Apply code review suggestions
      Co-authored-by: default avatarvfdev <vfdev.5@gmail.com>
      
      * Centralizing types and switching to always getting dicts.
      
      * Fixing linter
      
      * Refactoring typing definitions.
      
      * Remove relative imports.
      
      * Reuse type.
      
      * Temporarily remove the TorchData tests.
      
      * Restore the TorchData tests.
      Co-authored-by: default avatarvfdev <vfdev.5@gmail.com>
      f725901d
    • Ponku's avatar
      MaxVit model (#6342) · 6b1646ca
      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: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
      
      * Update torchvision/models/maxvit.py
      Co-authored-by: default avatarVasilis 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: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
      6b1646ca
    • Philip Meier's avatar
      add coverage to prototype tests CI (#6630) · d65e286f
      Philip Meier authored
      * add coverage to prototype tests CI
      
      * line continuation
      d65e286f
    • Karan Desai's avatar
      a09da902
  4. 22 Sep, 2022 4 commits
    • Philip Meier's avatar
      add more KernelInfo's and DispatcherInfo's (#6626) · 3c9ae0ac
      Philip Meier authored
      * add KernelInfo for adjust_brightness
      
      * add KernelInfo for adjust_contrast
      
      * add KernelInfo for adjust_hue
      
      * add KernelInfo for adjust_saturation
      
      * add KernelInfo for clamp_bounding_box
      
      * add KernelInfo for {five, ten}_crop_image_tensor as well as skip functionality
      
      * add KernelInfo for normalize
      
      * add KernelInfo for adjust_gamma
      
      * cleanup
      
      * add DispatcherInfo's for previously add KernelInfo's
      
      * add dispatcher info for elastic
      3c9ae0ac
    • Philip Meier's avatar
      cleanup prototype transforms functional tests (#6622) · 658ca539
      Philip Meier authored
      * cleanup prototype transforms functional tests
      
      * fix
      
      * oust local functions
      658ca539
    • vfdev's avatar
      [proto] Fixed fill type in AA (#6621) · f49edd3b
      vfdev authored
      
      
      * [proto] Fixed fill type in AA
      
      * Fixed missed typehints
      
      * Set fill as None by default
      
      * Another fix
      Co-authored-by: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
      f49edd3b
    • Ponku's avatar
      Add stereo preset transforms (#6549) · 0fcfaa13
      Ponku authored
      
      
      * Added transforms for Stereo Matching
      
      * changed implicit Y scaling to 0.
      
      * Adressed some comments
      
      * addressed type hint
      
      * Added interpolation random interpolation strategy
      
      * Aligned crop get params
      
      * fixed bug in RandomErase
      
      * Adressed scaling and typos
      
      * Adressed occlusion typo
      
      * Changed parameter order in F.erase
      
      * fixed random erase
      
      * Added inference preset transform for stereo matching
      
      * added contiguous reshape to output tensors
      
      * Adressed comments
      
      * Modified the transform preset to use Tuple[int, int]
      
      * adressed NITs
      
      * added grayscale transform, align resize -> mask
      
      * changed max disparity default behaviour
      
      * added fixed resize, changed masking in sparse flow masking
      
      * update to align with argparse
      
      * changed default mask in asymetric pairs
      
      * moved grayscale order
      
      * changed grayscale api to accept to tensor variant
      
      * mypy fix
      
      * changed resize specs
      
      * adressed nits
      
      * added type hints
      
      * mypy fix
      
      * mypy fix
      
      * mypy fix
      Co-authored-by: default avatarJoao Gomes <jdsgomes@fb.com>
      0fcfaa13
  5. 21 Sep, 2022 7 commits
  6. 20 Sep, 2022 2 commits
    • Vasilis Vryniotis's avatar
      Make prototype `F` JIT-scriptable (#6584) · 841b9a19
      Vasilis Vryniotis authored
      
      
      * Improve existing low kernel test.
      
      * Add new midlevel jit-scriptability test (failing).
      
      * Remove duplicate aliases from kernel tests.
      
      * Fixing colour kernels.
      
      * Fixing deprecated kernels.
      
      * fix mypy
      
      * Silence mypy instead of fixing to avoid performance penalty
      
      * Fixing augment kernels.
      
      * Fixing augment meta.
      
      * Remove is_tracing calls.
      
      * Add fake ImageType and DType
      
      * Fixing type conversion kernels.
      
      * Fixing misc kernels.
      
      * partial fix geometry
      
      * Remove mutable default from `_pad_with_vector_fill()` + all other unnecessary defaults.
      
      * Fix geometry ops
      
      * Fixing tests
      
      * Removed xfail for jit tests on midlevel ops
      Co-authored-by: default avatarvfdev-5 <vfdev.5@gmail.com>
      841b9a19
    • Ambuj Pawar's avatar
      Remove warnings pytest models (#6593) · 3a1f05ed
      Ambuj Pawar authored
      
      
      * ADD: init_weights config for googlenet
      
      * Fix: Inception and googlenet warnings
      
      * Fix: warning in test_datasets.py
      
      * Fix: Formatting error with ufmt
      
      * Fix: Failing tests in quantized_classification_model
      
      * Update test/test_models.py to make googlenet in 1 line
      Co-authored-by: default avatarPhilip Meier <github.pmeier@posteo.de>
      
      * Refactor: Change inception quantisation class initialization to use args/kwargs
      
      * Resolve mypy issue
      
      * Move *args before inception_blocks
      
      * Move args keywords before other arguments
      Co-authored-by: default avatarAmbuj Pawar <your_email@abc.example>
      Co-authored-by: default avatarPhilip Meier <github.pmeier@posteo.de>
      Co-authored-by: default avatarVasilis Vryniotis <datumbox@users.noreply.github.com>
      3a1f05ed
  7. 19 Sep, 2022 4 commits
  8. 16 Sep, 2022 6 commits
  9. 15 Sep, 2022 3 commits