- 09 Nov, 2020 1 commit
-
-
Licht Takeuchi authored
* Add modulation input for DeformConv2D * lint * Patch for GPU CI * Remove bad cache on CI
-
- 06 Nov, 2020 5 commits
-
-
F-G Fernandez authored
* style: Added annotation typing for shufflenet * fix: Removed duplicate type hint * refactor: Removed un-necessary import * fix: Fixed constructor typing * style: Added black formatting on depthwise_conv * style: Fixed stage typing in shufflenet
-
Bruno Korbar authored
* initial docstring * Revert "initial docstring" This reverts commit 2bf68ca26e58096885901da0cfa330530974e731. * revert the formatting changes * clear up per Victor's comment * Addressing PR comments Co-authored-by:Bruno Korbar <korbar@vggdev9.vggdev.cluster>
-
F-G Fernandez authored
* style: Added annotation typing for densenet * fix: Fixed import * refactor: Removed un-necessary import * fix: Fixed constructor typing * chore: Updated mypy.ini * fix: Fixed tuple typing * style: Ignored some mypy errors * style: Fixed typing * fix: Added missing constructor typing
-
vfdev authored
- fixed problem with error computation between results - refactored tensor cast for resize - fixed round usage
-
Aditya Oke authored
* changes to value error * fixes it :) * simpler fix
-
- 04 Nov, 2020 1 commit
-
-
peterjc123 authored
* Make read_file accept unicode strings on Windows * More fixes * Remove definitions from source files * Move string definitions to header * Add checks * Fix comments * Update macro * Fix comments * Fix lint * include windows header * Change func signature in header * Use from_blob * Fix fread calls * Fix clang format * Fix missing return * Avoid copy
-
- 03 Nov, 2020 2 commits
-
-
Vasilis Vryniotis authored
* Overwriting FrozenBN eps=0.0 if pretrained=True for detection models. * Moving the method to detection utils and adding comments.
-
Vasilis Vryniotis authored
* Making all model constructors explicit. * formatting.
-
- 02 Nov, 2020 1 commit
-
-
Vasilis Vryniotis authored
-
- 30 Oct, 2020 9 commits
-
-
Bruno Korbar authored
* Modified the example to conform with the new DICT return. * adding better stream documentation to examples * Clearing up some documentation as a result of a feedback * Formatting mostly * Addressing Victor's comments. * addressing fmassas comments * remove unnecessary tab Co-authored-by:
Bruno Korbar <korbar@vggdev9.vggdev.cluster> Co-authored-by:
vfdev <vfdev.5@gmail.com>
-
Vasilis Vryniotis authored
* Fixing types. * Dispatcher + Autocast. * + Autograd. * Formating. * Clean up and refactor PSROIPool implementation: - Remove primitive const declaration from method names. - Using references when possible. - Fix variable naming. * Restore include headers. * New line at end of file. * Resolving conflict, final cleanup, ordering method consistently across files.
-
Vasilis Vryniotis authored
* Fixing types. * Dispatcher + Autocast. * + Autograd. * Formating. * Fixing return casting with autocast. * Clean up and refactor ROIPool implementation: - Remove primitive const declaration from method names. - Using references when possible. * Restore include headers. * New line at end of file.
-
Vasilis Vryniotis authored
* Clean up and refactor ROIAlign implementation: - Remove primitive const declaration from method names. - Passing as const ref instead of value where possible. - Remove unnecessary headers. * Adding back include for cpu. * Restore include headers.
-
Vasilis Vryniotis authored
* Fixing types. * Dispatcher + Autocast. * + Autograd. * Clean up and refactor PSROIAlign implementation: - Remove primitive const declaration from method names. - Using references when possible. - Sync naming of internal methods with other ops. * Restoring names of internal methods to avoid conflicts. * Restore include headers.
-
Vasilis Vryniotis authored
* Clean up and refactor DeformConv implementation: - Remove primitive const declaration from method names. - Passing as const ref instead of value where possible. - Aligning method names between cpu and cuda. * Adding newline. * Adding back include for cpu. * Restoring method names of private methods to avoid conflicts. * Restore include headers.
-
Vasilis Vryniotis authored
* Change default eps value of FrozenBN. * Update the unit-tests.` * Update the expected values. * Revert the expected value and use original eps=0 value for flaky tests. * Post init change of eps. * Styles.
-
Vasilis Vryniotis authored
* Clean up and refactor ROIAlign implementation: - Remove primitive const declaration from method names. - Remove unnecessary headers. - Aligning method names between cpu and cuda. * Adding back include for cpu. * Restoring method names of private methods to avoid conflicts. * Restore include headers.
-
vfdev authored
- Replaced tuple creation by one acceptable by majority of compilers
-
- 28 Oct, 2020 1 commit
-
-
So Uchida authored
-
- 27 Oct, 2020 2 commits
-
-
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
-
- 26 Oct, 2020 4 commits
-
-
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.
-
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 5 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
-
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
-
vfdev authored
-
- 21 Oct, 2020 3 commits
-
-
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
-
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>
-