- 27 Oct, 2020 6 commits
-
-
Adam J. Stewart authored
* README: add recommended PyTorch version for v0.8.0 * PyTorch v1.7.0 is now released
-
Eli Uriegas authored
This was a mistake since version suffix should always be appended Signed-off-by:
Eli Uriegas <eliuriegas@fb.com> (cherry picked from commit 6631b74db7cf8aebee8af196b4c65b1fce220baa) Signed-off-by:
Eli Uriegas <eliuriegas@fb.com>
-
vfdev authored
- fixed bug with Resize and size as single int
-
Vasilis Vryniotis authored
* Splitting tuples of stride, padding and dilation of DeformConv. * Fixing types. * Dispatcher + Autocast. * + Autograd. * Moving contiguous() convertions away dispatcher and into the implementations. * Removing rvalue references.
-
F-G Fernandez authored
* style: Added annotation typing for vgg * fix: Fixed annotation typing * refactor: Removed un-necessary import * fix: Added missing annotation for kwargs * fix: Fixed constructor typing * refactor: Refactored typing to minize changes * refactor: Refactored typing cast * fix: Fixed module list typing
-
Francisco Massa authored
-
- 26 Oct, 2020 6 commits
-
-
Yoshitomo Matsubara authored
* add a README for training object detection models * replaced np.asarray with np.array to avoid warning messages * added data-path for flexibility * fixed a typo
-
Vasilis Vryniotis authored
* Minor refactoring based on static analysis on the code of models: - Convert unnecessary value parameter to constant reference. - Use move to avoid unnecessary copies. - Eliminate unused include. * Replace moves with const references. * Fixing formatting. * Remove explicit declaration on constructors.
-
vfdev authored
-
Vasilis Vryniotis authored
- Remove unnecessary return.
-
Vasilis Vryniotis authored
- Replace deprecated string.h with cstring. - Switch to nullptr.
-
Vasilis Vryniotis authored
* Convert to const reference and eliminate unnecessary bool casting. * Removing unnecessary namespace use.
-
- 23 Oct, 2020 6 commits
-
-
Vaibhav Balloli authored
* Add float support to ColorJitter * Fix byclass EMNIST * Fix bymerge, balance, letters EMNIST * Fix whitespace indent * Revert unrelated file changes * Revert unrelated file changes * Removing unnecessary type conversions. * Removing the transform and adding dummy class instead. Co-authored-by:Vasileios Vryniotis <vvryniotis@fb.com>
-
F-G Fernandez authored
* fix: Fixed constructor typing in models._utils * fix: Fixed constructor typing in models.alexnet * fix: Fixed constructor typing in models.mnasnet * fix: Fixed constructor typing in models.squeezenet
-
F-G Fernandez authored
* style: Added annotation typing for mmobilenet * fix: Fixed type hinting of adaptive pooling * refactor: Removed un-necessary import * fix: Fixed constructor typing * fix: Fixed list typing
-
F-G Fernandez authored
* style: Added annotation typing for googlenet * fix: Removed duplicate typing * refactor: Moved factory function after class definition to fix typing * fix: Fixed annotation typing * refactor: Removed un-necessary import * fix: Fixed typing * refactor: Moved back up helper function and quote typed it
-
F-G Fernandez authored
* style: Added annotation typing for inception * refactor: Moved factory function after class definition * style: Changed attribute setting for type hinting * refactor: Removed un-necessary import * fix: Fixed typing in constructors * fix: Fixed kwargs typing * style: Fixed lint * refactor: Moved helpers function back and quote typed it
-
F-G Fernandez authored
* style: Added annotation typing for resnet * fix: Fixed annotation to pass classes * fix: Fixed annotation typing * fix: Fixed annotation typing * fix: Fixed annotation typing for resnet * refactor: Removed un-necessary import * fix: Fixed constructor typing * style: Added black formatting on _resnet
-
- 22 Oct, 2020 7 commits
-
-
F-G Fernandez authored
* style: Added annotation typing for squeezenet * feat: Added typing for kwargs
-
F-G Fernandez authored
* style: Added annotation typing for mnasnet * refactor: Removed un-necessary import
-
vfdev authored
-
F-G Fernandez authored
-
F-G Fernandez authored
* style: Added typing in models._utils * fix: Removed non-necessary import * fix: Removed type annotation of forward method * refactor: Removed un-necessary import
-
Vasilis Vryniotis authored
* Switching to Pytorch's clang-formatter. * Replacing binary.
-
vfdev authored
-
- 21 Oct, 2020 7 commits
-
-
Philip Meier authored
-
F-G Fernandez authored
* docs: Fixed docstring of RandomResizedCrop * docs: Updated docstring Co-authored-by:vfdev <vfdev.5@gmail.com>
-
F-G Fernandez authored
* feat: Updated FrozenBN eps to align with BatchNorm * feat: Added eps to __repr__ of FrozenBN * test: Updated unittest of __repr__ for FrozenBN * test: Updated unittest for eps value in BN and FrozenBN * fix: Revert FrozenBN eps value * test: Revert test on eps alignment between FrozenBN and BN
-
moto authored
Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
bmanga authored
Co-authored-by:vfdev <vfdev.5@gmail.com>
-
F-G Fernandez authored
* feat: Added __repr__ to MultiScaleRoIAlign * test: Added unittest for __repr__ of MultiScaleRoIAlign * feat: Added feature map names in __repr__ * test: Updated unittest Co-authored-by:vfdev <vfdev.5@gmail.com>
-
vfdev authored
-
- 20 Oct, 2020 2 commits
-
-
Vasilis Vryniotis authored
* Vectorize operations, across all feaure levels. * Remove unnecessary other_outputs variable. * Split per feature level. * Perform batched_nms across feature levels. * Add extra parameter for limiting detections before and after nms. * Restoring default threshold. * Apply suggestions from code review Co-authored-by:
Francisco Massa <fvsmassa@gmail.com> * Renaming variable. Co-authored-by:
Francisco Massa <fvsmassa@gmail.com>
-
Gao, Xiang authored
-
- 16 Oct, 2020 5 commits
-
-
Eli Uriegas authored
ROCM builds were being picked up for CUDA 10.2 builds since they do not specify a version suffix. We can utilize the CU_VERSION to be specific about which index to actually pull from. Signed-off-by:Eli Uriegas <eliuriegas@fb.com>
-
Vasilis Vryniotis authored
-
vfdev authored
-
bmanga authored
* Ensure torchvision operators are registered in C++ via weak symbols * Add note to README on how to ensure that torchvision operators are available in C++ * Fix dllimport/dllexport on windows, format files * Factor out common macros in single file * Expose cuda_version in the API, use it to avoid pruning of ops initializer
-
Vasilis Vryniotis authored
* Modify expected value and threshold for retinanet unit-test. * Disable tests on GPU Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
- 15 Oct, 2020 1 commit
-
-
Edgar Andrés Margffoy Tuay authored
* Fix external DLL loading on wheels * Use SetDefaultDllDirectoriess and AddDllDirectory * Add previous paths * Trigger debug * Do not call SetDefaultDllDirectories. * Do not call loadlibrary if the extensions were not compiled * Fix lint issues
-