- 30 Apr, 2019 1 commit
-
-
Philip Meier authored
* added progress flag to model getters * flake8 * bug fix * backward commpability
-
- 24 Apr, 2019 1 commit
-
-
Francisco Massa authored
* Add dilation option to ResNet * Add a size check for replace_stride_with_dilation
-
- 17 Apr, 2019 1 commit
-
-
Adam J. Stewart authored
-
- 15 Apr, 2019 1 commit
-
-
Ross Wightman authored
* Fix ResNeXt model defs with backwards compat for ResNet. * Fix Python 2.x integer div issue
-
- 08 Apr, 2019 1 commit
-
-
Allan Wang authored
-
- 05 Apr, 2019 1 commit
-
-
Francisco Massa authored
-
- 04 Apr, 2019 1 commit
-
-
Sepehr Sameni authored
* add aux_logits support to inception it is related to pytorch/pytorch#18668 * instantiate InceptionAux only when requested it is related to pytorch/pytorch#18668 * revert googlenet * support and aux_logits in pretrained models * return namedtuple when aux_logit is True
-
- 02 Apr, 2019 2 commits
-
-
Francisco Massa authored
* Add groups support to ResNet * Kill BaseResNet * Make it support multi-machine training
-
Surgan Jandial authored
Making references/classification/train.py and references/classification/utils.py compatible with python2 (#831) * linter fixes * linter fixes
-
- 01 Apr, 2019 1 commit
-
-
Sepehr Sameni authored
* remove duplicate code from densenet * correct indentation
-
- 29 Mar, 2019 2 commits
-
-
Michael Kösel authored
-
Michael Kösel authored
* Match Tensorflows implementation of GoogLeNet * just disable the branch when pretrained is true * don't use legacy code
-
- 28 Mar, 2019 1 commit
-
-
Francisco Massa authored
* Add MobileNet V2 * Remove redundant functions and make tests pass * Simplify a bit the implementation * Reuse ConvBNReLU more often * Remove input_size and minor changes * Py2 fix
-
- 26 Mar, 2019 3 commits
-
-
ekka authored
-
Francisco Massa authored
-
ekka authored
-
- 11 Mar, 2019 1 commit
-
-
ekka authored
In reference to #729 added comments to clarify the naming and action of the layers performing downsampling in resnets.
-
- 09 Mar, 2019 2 commits
-
-
ekka authored
* Added dimensions in the comments The update provides the dimensions of the processed data following the style of inceptionV3 implementation. * Changed docs and comments Updated doc with the argument `transform_input`. Modified comments to match inceptionV3 style.
-
ekka authored
Including the `transform_input` argument in the docs of inceptionV3
-
- 07 Mar, 2019 1 commit
-
-
Michael Kösel authored
* Add GoogLeNet (Inception v1) * Fix missing padding * Add missing ReLu to aux classifier * Add Batch normalized version of GoogLeNet * Use ceil_mode instead of padding and initialize weights using "xavier" * Match BVLC GoogLeNet zero initialization of classifier * Small cleanup * use adaptive avg pool * adjust network to match TensorFlow * Update url of pre-trained model and add classification results on ImageNet * Bugfix that improves performance by 1 point
-
- 18 Feb, 2019 1 commit
-
-
surgan12 authored
* flake_fixes * flake_fixes2
-
- 14 Feb, 2019 4 commits
-
-
ekka authored
* Modifying the comments of inceptionV3 dimensions Modifying the comments of inceptionV3 dimensions to match the pytorch convention. Relevant (https://github.com/pytorch/vision/pull/719#pullrequestreview-203194302) * Added Batch size in comment * Update inception.py
-
ekka authored
* Updated inceptionV3 to accept different sized images (Adaptive avg pool) The update allows inceptionV3 to process images larger or smaller than prescribed image size (299x299) using adaptive average pooling. Will be useful while finetuning or testing on different resolution images. * Update inception.py
-
ekka authored
The update allows VGG to process images larger or smaller than prescribed imagenet size using adaptive average pooling. Will be useful while finetuning or testing on different resolution images. Similar to https://github.com/pytorch/vision/pull/643 and https://github.com/pytorch/vision/pull/672. I did not include adaptive avg pool in features or classifier block so that these predefined blocks can be used as it is.
-
ekka authored
The update allows Alexnet to process images larger or smaller than prescribed imagenet size using adaptive average pooling. Will be useful while finetuning or testing on different resolution images. Similar to https://github.com/pytorch/vision/pull/643 and https://github.com/pytorch/vision/pull/672. I did not include adaptive avg pool in features or classifier block so that these predefined blocks can be used as it is.
-
- 13 Feb, 2019 1 commit
-
-
Jonas authored
* Added size information for inception v3 Since inception v3 expects in contrast to the other models a size of 299x299x3 I added a small note in the docstring to point that out (addresses #560) * inception size info in note box; fixed line length * removed trailing whitespace
-
- 11 Dec, 2018 1 commit
-
-
任广辉 authored
-
- 06 Dec, 2018 1 commit
-
-
Yuxin Wu authored
* Zero-init the residual branch in resnet * Add zero_init_residual as an option
-
- 27 Nov, 2018 1 commit
-
-
kwu authored
* Changing to AdaptiveAvgPool2d * add whitespace
-
- 12 Nov, 2018 2 commits
-
-
Amir Arsalan Soltani authored
* Update densenet.py * Update densenet.py
-
Amir Arsalan Soltani authored
-
- 06 Nov, 2018 2 commits
-
-
Erik Gaasedelen authored
* use predefined function * cleanup resnet * fix stride * revert inplanes since it isnt constant * lint
-
Adán Mora-Fallas authored
* AdaptiveAvgpool2d integrated The Average Pool Layer on SqueezeNet and ResNet was hardcoded, this was changed, now any the input size is accepted. * error fixed * linting fixed
-
- 25 Oct, 2018 2 commits
-
-
Bowen Bao authored
* Fix inception v3 input transform for trace & onnx * Input transform are in-place updates, which produce issues for tracing and exporting to onnx. * nit
-
Kyryl Truskovskyi authored
* cast mnist targer to int * fix unused variables * fix syntax in tests * remove # noqa; rename l variable to line_split; use except OSError * add W504 * add W504 * add W503,W504 tox.ini
-
- 01 Oct, 2018 1 commit
-
-
Binghuan Zhang authored
-
- 09 May, 2018 1 commit
-
-
vfdev authored
nit: replace 4 by expansion
-
- 30 Apr, 2018 1 commit
-
-
Ryuichiro Hataya authored
* fix for PyTorch v0.4 (remove .data and add _ for the initializations in nn.init) * fix m.**.**() style to nn.init.**(**) style * remove .idea * fix lines and indents * fix lines and indents * change to use `kaming_normal_` * add `.data` for safety * add nonlinearity='relu' for sure * fix indents
-
- 21 Apr, 2018 1 commit
-
-
Tongzhou Wang authored
-
- 02 Jan, 2018 1 commit
-
-
Yun Chen authored
-