- 12 Mar, 2021 2 commits
-
-
Nicolas Hug authored
Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Philip Meier authored
* add mirrors to (Fashion|K)MNIST * fix download tests for MNIST
-
- 11 Mar, 2021 2 commits
-
-
Nicolas Hug authored
-
Philip Meier authored
* fix test_extract_(zip|tar|tar_xz|gzip) on windows * lint Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
- 10 Mar, 2021 4 commits
-
-
Nicolas Hug authored
Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
Nicolas Hug authored
-
Philip Meier authored
* add tests for Flickr8k dataset * add tests for FLickr30k dataset * lint Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
Bruno Korbar authored
* Stash commit * Refactoring the current tests in a simpler file * Addressing Francisco's comments, attempt 1 * Remove old tests * audio changes * adding some comments * Stash commit * Refactoring the current tests in a simpler file * Addressing Francisco's comments, attempt 1 * Remove old tests * audio changes * adding some comments * adding the py39 check stuff Co-authored-by:
Bruno Korbar <korbar@vggdev9.vggdev.cluster> Co-authored-by:
Francisco Massa <fvsmassa@gmail.com>
-
- 08 Mar, 2021 2 commits
-
-
Nicolas Hug authored
* use bincount instead of hist * only use bincount when on CPU * Added equality test for CPU vs cuda * Fix flake8 and tests * tuple instead of int for size
-
Nicolas Hug authored
* new batched_nms implem * flake8 * hopefully fix torchscipt tests * Use where instead of nonzero * Use same threshold (4k) for CPU and GPU * Remove use of argsort * use views again * remove print * trying stuff, I don't know what's going on * previous passed onnx checks so the error isn't in _vanilla func. Trying to return vanilla now * add tracing decorators * cleanup * wip * ignore new path with ONNX * use vanilla if tracing...???? * Remove script_if_tracing decorator as it was conflicting with _is_tracing * flake8 * Improve coverage Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
- 04 Mar, 2021 3 commits
-
-
Nicolas Hug authored
-
Francisco Massa authored
-
Nicolas Hug authored
* WIP, still needs tests and docs * tests * flake8 * Docs + fixed some tests * proper error messages
-
- 03 Mar, 2021 3 commits
-
-
Philip Meier authored
* add custom user agent for download_url * fix progress bar * lint * [test] use repo instead of nightly for download tests
-
KAI ZHAO authored
-
Philip Meier authored
-
- 02 Mar, 2021 2 commits
-
-
Philip Meier authored
* add tests for PhotoTour dataset * fix grayscale image generation * fix test_feature_types for a examples of a single feature * make image size variable instead of hard coding it * make dataset length variable instead of hard coding it * replace numpy with torch * fix typo
-
Philip Meier authored
-
- 01 Mar, 2021 11 commits
-
-
Francisco Massa authored
-
Philip Meier authored
* add tests for FakeData dataset * improve skip reason Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Philip Meier authored
Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Philip Meier authored
* add tests for SEMEION dataset * add missing imports Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Philip Meier authored
Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Philip Meier authored
Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Philip Meier authored
* add tests for HMDB51 dataset * lint Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
Philip Meier authored
* add tests for Kinetics400 * use create_random_string() Co-authored-by:
Philip Meier <pmeier.github@posteo.de> Co-authored-by:
Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
-
Philip Meier authored
Co-authored-by:
vfdev <vfdev.5@gmail.com> Co-authored-by:
Francisco Massa <fvsmassa@gmail.com>
-
- 26 Feb, 2021 1 commit
-
-
Nicolas Hug authored
* deprecate _video modules * flake8 Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
- 25 Feb, 2021 3 commits
-
-
Philip Meier authored
* always use default config as base * fix test_all_configs decorator * lint * add a utility function to create a random string * move output check of inject_fake_data to dedicated method * always disable download and extract functionality
-
Philip Meier authored
-
Philip Meier authored
* make UsageError an Exception rather than RuntimeError * separate fake data injection and dataset args handling * adapt tests for Coco * fix Coco implementation * add documentation * fix VideoDatasetTestCase * adapt UCF101 tests * cleanup * allow FileNotFoundError for test without fake data * Revert "fix Coco implementation" This reverts commit e2b693881654b3e2462a73e6d22bb01c1b738f8a. * lint * fix UCF101 tests
-
- 23 Feb, 2021 2 commits
-
-
Philip Meier authored
* enable default frames per clips for video test cases * add tests for UCF101 * remove old tests as well as fake data generation * better explain frames_per_clip overriding * lint Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
Francisco Massa authored
Summary: Pull Request resolved: https://github.com/pytorch/vision/pull/3422 In CUDA-10.1 or below it is a no-op, but few of the tests will start to fail if update to 10.2 or newer, for example: ``` torchvision/transforms/transforms.py", line 1043, in forward transformed_tensor = torch.mm(flat_tensor, self.transformation_matrix) RuntimeError: Deterministic behavior was enabled with either `torch.use_deterministic_algorithms(True)` or `at::Context::setDeterministicAlgorithms(true)`, but this operation is not deterministic because it uses CuBLAS and you have CUDA >= 10.2. To enable deterministic behavior in this case, you must set an environment variable before running your PyTorch application: CUBLAS_WORKSPACE_CONFIG=:4096:8 or CUBLAS_WORKSPACE_CONFIG=:16:8. For more information, go to https://docs.nvidia.com/cuda/cublas/index.html#cublasApi_reproducibility ``` Reviewed By: meyering Differential Revision: D26563045 fbshipit-source-id: 65e5fabc8cdb471a72f931df55389ed7c0063e54 Co-authored-by:
Nikita Shulga <nshulga@fb.com>
-
- 22 Feb, 2021 4 commits
-
-
Philip Meier authored
Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
* use common download utils in VOC and SBDataset * add tests for VOC * use common base class for VOC datasets * remove old voc test and fake data generation Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
- 18 Feb, 2021 1 commit
-
-
Philip Meier authored
* add base class for datasets tests * add better type hints * add documentation to subclasses * add utility functions to create files / folders of random images and videos * fix imports * remove class properties * fix smoke test * fix type hints * fix random size generation * add Caltech256 as example * add utility function to create grid of combinations * add CIFAR100? as example * lint * add missing import * improve documentation * create 1 frame videos by default * remove obsolete check * return path of files created with utility functions * [test] close PIL file handles before deletion * fix video folder creation * generalize file handle closing * fix lazy imports * add test for transforms * fix explanation comment * lint * force load opened PIL images * lint * copy default config to avoid inplace modification * enable additional arg forwarding
-