- 28 Apr, 2021 1 commit
-
-
Nicolas Hug authored
-
- 27 Apr, 2021 1 commit
-
-
Aditya Oke authored
Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
- 26 Apr, 2021 1 commit
-
-
Nicolas Hug authored
-
- 23 Apr, 2021 2 commits
-
-
Philip Meier authored
* fix check for exceeded quota on Google Drive * safeguard quota exceed check
-
Prabhat Roy authored
-
- 18 Apr, 2021 1 commit
-
-
t-rutten authored
-
- 16 Apr, 2021 1 commit
-
-
Prabhat Roy authored
-
- 12 Apr, 2021 1 commit
-
-
Caroline Chen authored
* Remove pandas dependecy for CelebA dataset * address PR comments * Apply suggestions from code review Co-authored-by:
Philip Meier <github.pmeier@posteo.de> Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> Co-authored-by:
Philip Meier <github.pmeier@posteo.de>
-
- 09 Apr, 2021 1 commit
-
-
Prabhat Roy authored
* Added KITTI dataset * Addressed review comments * Changed type of target to List[Dict] and corrected the data types of the returned values. * Updated unit test to rely on ImageDatasetTestCase * Added kitti to dataset documentation * Cleaned up test and some minor changes * Made data_url a string instead of a list * Removed unnecessary try and print Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
- 08 Apr, 2021 1 commit
-
-
Mustafa Bal authored
* Added defusedxml to parse untrusted XML data * Added typecheck disable for defusedxml Co-authored-by:Nicolas Hug <nicolashug@fb.com>
-
- 07 Apr, 2021 2 commits
-
-
Aditya Oke authored
* redirect the urls * adds /edit * Apply suggestions from code review * fix lint * undo urls Co-authored-by:
Philip Meier <github.pmeier@posteo.de> Co-authored-by:
Francisco Massa <fvsmassa@gmail.com>
-
Alessandro Melis authored
Co-authored-by:Nicolas Hug <nicolashug@fb.com>
-
- 30 Mar, 2021 1 commit
-
-
Philip Meier authored
* add tests for (Dataset|Image)Folder * lint * remove old tests * cleanup * more cleanup * adapt tests * fix make_dataset * remove powerset * readd import
-
- 24 Mar, 2021 1 commit
-
-
Philip Meier authored
* factor out find_classes * use find_classes in video datasets * adapt old tests
-
- 20 Mar, 2021 1 commit
-
-
Avijit Dasgupta authored
* added .item() for target inside getitem * changed fakedataset's expected return type Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
- 17 Mar, 2021 1 commit
-
-
Philip Meier authored
Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
- 16 Mar, 2021 1 commit
-
-
Philip Meier authored
* remove caching from (Fashion|K)?MNIST * remove unnecessary lazy import * remove false check of binaries against the md5 of archives * remove caching from EMNIST * remove caching from QMNIST * lint * fix EMNIST * streamline QMNIST download
-
- 15 Mar, 2021 3 commits
-
-
Philip Meier authored
-
Philip Meier authored
* generalize extract_archive * [test] re-enable extraction tests on windows * add tests for detect_file_type * add error messages to detect_file_type * Revert "[test] re-enable extraction tests on windows" This reverts commit 7fafebb0f6b4c49bd72c4b5e0a0b4b8c432bce57. * add utility functions for better mock call checking * add tests for decompress * simplify logic by using pathlib * lint * Apply suggestions from code review Co-authored-by:
Francisco Massa <fvsmassa@gmail.com> * make decompress private * remove unnecessary checks * add error message * fix mocking * add remaining tests * lint Co-authored-by:
Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
* use head request for redirects * remove requests dependency
-
- 12 Mar, 2021 2 commits
-
-
Aditya Oke authored
* add missing docs * tries fixing docs * fixes docs * fixes ..code 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 3 commits
-
-
Eli Uriegas authored
We are experiencing 403s when trying to download from the main mnist site so lets fallback to our own mirror on failure. Signed-off-by:
Eli Uriegas <eliuriegas@fb.com> Co-authored-by:
Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
-
- 03 Mar, 2021 1 commit
-
-
Philip Meier authored
* add custom user agent for download_url * fix progress bar * lint * [test] use repo instead of nightly for download tests
-
- 02 Mar, 2021 1 commit
-
-
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
-
- 01 Mar, 2021 3 commits
-
-
Philip Meier authored
* include intended structure of root directory in docstring of Kinetics400 * fix syntax Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
Co-authored-by:
vfdev <vfdev.5@gmail.com> Co-authored-by:
Francisco Massa <fvsmassa@gmail.com>
-
Philip Meier authored
Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
- 25 Feb, 2021 1 commit
-
-
Philip Meier authored
Co-authored-by:vfdev <vfdev.5@gmail.com>
-
- 22 Feb, 2021 2 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>
-
- 05 Feb, 2021 1 commit
-
-
Philip Meier authored
* fix STL10 folds * use np.int64 over np.long
-
- 02 Feb, 2021 1 commit
-
-
Sofya Lipnitskaya authored
* Check if the file is located on Google Drive download_file() detects if the provided URL contains a link to Google Drive and passes the request through the download_file_from_google_drive() if it is the case. * remove lazy re import * add guard clause * use urlparse * add tests * Fixing lint. * make id matching more safe * Fixing type check. * Remove AnyStr. Co-authored-by:
Philip Meier <github.pmeier@posteo.de> Co-authored-by:
Vasilis Vryniotis <vvryniotis@fb.com>
-
- 01 Feb, 2021 1 commit
-
-
Vasilis Vryniotis authored
* Fixing mypy errors. * Fixing typing issue.
-
- 29 Jan, 2021 1 commit
-
-
Nicolas Hug authored
* Document undodcumented parameters * remove setup.cfg changes * Properly pass normalize down instead of deprecating it * Fix flake8 * Add new CI check * Fix type spec * Leave normalize be part of kwargs Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
- 26 Jan, 2021 1 commit
-
-
Nicolas Hug authored
Co-authored-by:Vasilis Vryniotis <datumbox@users.noreply.github.com>
-
- 19 Jan, 2021 1 commit
-
-
Vasilis Vryniotis authored
* Simplify code and remove used vars. * Simplify expressions and remove used parenthesis. * Jit fixes. * Making check more readable. * fixing styles
-
- 15 Jan, 2021 1 commit
-
-
Sofya Lipnitskaya authored
* Make download_url() follow redirects Fix bug related to the incorrect processing of redirects. Follow the redirect chain until the destination is reached or the number of redirects exceeds the max allowed value (by default 10). * Parametrize value of max allowed redirect number Make max number of hops a function argument and assign its default value to 10 * Propagate the max number of hops to download_url() Add the maximum number of redirect hops parameter to download_url() * check file existence before redirect * remove print * remove recursion * add tests * Reducing max_redirect_hops Co-authored-by:
Vasilis Vryniotis <datumbox@users.noreply.github.com> Co-authored-by:
Philip Meier <github.pmeier@posteo.de> Co-authored-by:
Vasilis Vryniotis <vvryniotis@fb.com>
-