"docs/vscode:/vscode.git/clone" did not exist on "82d7a3bf0555004c653fac877410236dcbaa2b7a"
- 12 Jul, 2019 4 commits
-
-
Shahriar authored
* Added mnasnet * Fixed some stuff * Fixed some stuff * Finished MNASNet * Fixed format error * Fixed format error
-
buoyancy99 authored
-
Varun Agrawal authored
updated all docstrings and code references for boxes to be consistent with the scheme (x1, y1, x2, y2) (#1110)
-
flauted authored
* Doc multigpu and propagate data path. * Use raw doc because of backslash.
-
- 11 Jul, 2019 1 commit
-
-
Hong Xu authored
In-place operators should only have method variant. Update here in preparation of future PyTorch change. For example see https://github.com/pytorch/pytorch/issues/22707
-
- 10 Jul, 2019 1 commit
-
-
ekka authored
* add float32 to keypoint_rcnn docs * add float32 to faster_rcnn docs * add float32 to mask_rcnn * Update faster_rcnn.py * Update keypoint_rcnn.py * Update mask_rcnn.py * Update faster_rcnn.py * make keypoints float * make masks uint8 * Update keypoint_rcnn.py * make labels Int64 * make labels Int64 * make labels Int64 * Add checks for boxes, labels, masks, keypoints * update mask dim * remove dtype * check only if targets is not None * account for targets being a list * update target to be list of dict * Update faster_rcnn.py * Update keypoint_rcnn.py * allow boxes to be of float16 type as well * remove checks on mask
-
- 09 Jul, 2019 2 commits
-
-
Philip Meier authored
* cast images to PIL at instantiation instead of runtime * add test for svhn * added tests for remaining SVHN splits * flake8 * rolled back changes to datasets
-
Surgan Jandial authored
* to_pil_image updates * lint * Update test_transforms.py * Update test_transforms.py
-
- 08 Jul, 2019 1 commit
-
-
Igor Fedan authored
-
- 06 Jul, 2019 2 commits
-
-
Zhun Zhong authored
* Fix bug to Random Erasing 1. Avoid forever loop for getting parameters of erase. 2. replace' img_b' by 'img_c', because it indicates the channel. 3. replace v = torch.rand([img_c, h, w]) by v = torch.empty([img_c, h, w], dtype=torch.float32).normal_(). Normally distributed achieves better performance. * add test * Update test_transforms.py * Update transforms.py * Update test_transforms.py * Update transforms.py * Update functional.py
-
Shahriar authored
-
- 05 Jul, 2019 2 commits
- 04 Jul, 2019 6 commits
-
-
buoyancy99 authored
* Update test for detection model to test input list unmodified Update test for detection model to test input list unmodified according to suggestion in a previous PR * test input unchaged
-
ekka authored
* Minor optimization to RandomErasing This PR adds an additional check on `p` argument and prevents computing `img.shape` multiple times. * linting
-
ekka authored
Fixes #1047.
-
ekka authored
* Add paper references to VGG * Add paper references to ResNet and its variants
-
buoyancy99 authored
* fix transform for rcnns so original images are unchanged * transform does not change input list anymore transform does not change input list anymore. Improve code according to reviewer comment * transform for maskrcnn no longer modify input list transform for maskrcnn no longer modify input list. improve code according to comment * transform for maskrcnn no longer modifies input list
-
Ross Taylor authored
* Cityscapes test; semantic segmentation getitem test * Add multiple targets test for Cityscapes * flake8 fix for test_datasets
-
- 03 Jul, 2019 2 commits
-
-
peterjc123 authored
-
ptrblck authored
* initial commit * add more checks, fix lint, fix doc
-
- 02 Jul, 2019 2 commits
-
-
yaysummeriscoming authored
* Fixed width multiplier Layer channels are now rounded to a multiple of 8, as per the official tensorflow implementation. I found this fix when looking through: https://github.com/d-li14/mobilenetv2.pytorch * Channel multiple now a user configurable option The official tensorflow slim mobilenet v2 implementation rounds the number of channels in each layer to a multiple of 8. This is now user configurable - 1 turns off rounding * Fixed whitespace error Fixed error: ./torchvision/models/mobilenet.py:152:1: W293 blank line contains whitespace
-
Francisco Massa authored
* WIP * WIP * Add some documentation * Improve tests and add GC collection * [WIP] add timestamp getter * Bugfixes * Improvements and travis * Add audio fine-grained alignment * More doc * Remove unecessary file * Remove comment * Lazy import av * Remove hard-coded constants for the test * Return info stats from read * Fix for Python-2
-
- 01 Jul, 2019 1 commit
-
-
Ross Taylor authored
-
- 29 Jun, 2019 1 commit
-
-
Ross Taylor authored
* Automatic unzip logic * add new line end of file
-
- 28 Jun, 2019 2 commits
-
-
Surgan Jandial authored
* updates on normalize * test fixes * Update test_transforms.py
-
Surgan Jandial authored
* test improved * Update test_transforms.py * behaviour changes RandomErasing * test fixes * linter fix
-
- 26 Jun, 2019 3 commits
-
-
Benoit Brummer authored
* fix save_image when height or width == 1 * test_save_image_single_pixel
-
Sergey Zagoruyko authored
* add wide resnet * add docstring for wide resnet * update WRN-50-2 model * add docs * extend WRN docstring * use pytorch storage for WRN * fix rebase * fix typo in docs
-
buoyancy99 authored
-
- 25 Jun, 2019 1 commit
-
-
Shahriar authored
-
- 24 Jun, 2019 7 commits
-
-
Francisco Massa authored
-
Francisco Massa authored
-
Francisco Massa authored
-
Zhun Zhong authored
* add erase function * add Random Erasing * Update transforms.py * Update transforms.py * add test for random erasing * Update test_transforms.py * fix flake8 * Update test_transforms.py * Update functional.py * Update test_transforms.py * fix bug for per-pixel erasing * Update transforms.py * specific for coordinate (x, y) * add raise TypeError for img * Update transforms.py * Update transforms.rst
-
Michael Kösel authored
-
Dmitry Belenko authored
* Add initial mnasnet impl * Remove all type hints, comply with PyTorch overall style * Expose models * Remove avgpool from features() and add separately * Fix python3-only stuff, replace subclasses with functions * fix __all__ * Fix typo * Remove conditional dropout * Make dropout functional * Addressing @fmassa's feedback, round 1 * Replaced adaptive avgpool with mean on H and W to prevent collapsing the batch dimension * Partially address feedback * YAPF * Removed redundant class vars * Update urls to releases * Add information to models.rst * Replace init with kaiming_normal_ in fan-out mode * Use load_state_dict_from_url
-
Adrian Campos authored
Values from random.random() are always in the range [0.0, 1.0), so the statement `random.random() > 5` will never be true.
-
- 20 Jun, 2019 2 commits
-
-
Michael Kösel authored
* Use joint transform in Cityscapes * Add transforms doc
-
Geovanni Zhang authored
* fix:error message of to_tensor The error "pic should be PIL Image or ndarray. Got '<numpy.ndarray>'" is confusing. * fix:a clearer function name _is_numpy_image is clearer than _is_numpy_image_dim * fix:add a test case Add a test case in test/test_transforms.py to test the error message * fix:pass ci check * fix:wrong random matrix
-