- 01 Jul, 2020 1 commit
-
-
Edgar Andrés Margffoy Tuay authored
This reverts commit 766721b1.
-
- 30 Jun, 2020 1 commit
-
-
Edgar Andrés Margffoy Tuay authored
* Add libpng requirement into conda recipe * Try to install libjpeg-turbo * Add PNG reading capabilities * Remove newline * Add image extension to compilation instructions * Include png functions as part of the main library * Update CMakeLists * Detect if building on conda-build * Debug * More debug messages * Print globbed libreries * Print globbed libreries * Point to correct PNG path * Remove libJPEG preventively * Debug extension loading * Link libpng explicitly * Link with PNG * Add PNG reading capabilities * Add libpng requirement into conda recipe * Try to install libjpeg-turbo * Remove newline * Add image extension to compilation instructions * Include png functions as part of the main library * Update CMakeLists * Detect if building on conda-build * Debug * More debug messages * Print globbed libreries * Print globbed libreries * Point to correct PNG path * Remove libJPEG preventively * Debug extension loading * Link libpng explicitly * Link with PNG * Install libpng on conda-based wheel distributions * Add -y flag * Add -y flag to yum * Locate LibPNG on windows conda * Remove empty else * Copy libpng16.so * Copy dylib on Mac * Improve check on Windows * Try to install ninja using conda on windows * Use libpng on Windows * Package lib on windows wheel * Point library to the correct place * Include binaries as part of wheel * Copy libpng.so on linux * Look for png.h on Windows when using conda-build * Do not skip png tests on Mac/Win * Restore libjpeg-turbo * Install jpeg-turbo on wheel distributions * Install libjpeg-turbo from conda-forge on wheel distributions * Do not pull av on conda-build * Add pillow disclaimer * Vendors libjpeg-turbo 2.0.4 * Merge JPEG work * Remove submodules * Regenerate circle config * Fix style issues * Fix C++ style issues * More style corrections * Add JPEG-turbo to linking libraries * More style corrections * More style corrections * More style corrections * Install libjpeg-turbo-devel * Install libturbo-jpeg on typing pipeline * Update Circle template * Windows and Unix turbojpeg have the same linking name * Install turbojpeg-devel instead of libjpeg-turbo * Copy TurboJPEG binaries to wheel * Move test image * Move back test image * Update JPEG test path * Remove dot from extension * Move image functions to extension * Use stdout arg in subprocess * Disable image extension if libpng or turbojpeg are not found * Append libpng stdout * Prevent list appending on lists * Minor path correction * Minor error correction * Add linking flags * Style issues correction * Address minor review corrections * Refactor library search * Restore access index * Fix JPEG tests * Update libpng version in Travis * Add -y flag * Remove dot * Update libpng using apt * Check libpng version * Change libturbojpeg binary * Update import * Change call * Restore av in conda recipe * Minor error correction * Remove unused comment in travis.yml * Update README * Fix missing links * Remove fixes for 16.04 Co-authored-by:Ryad ZENINE <r.zenine@gmail.com>
-
- 26 May, 2020 1 commit
-
-
Philip Meier authored
* add compatibility table to README * Update README.rst * Update README.rst Co-authored-by:Francisco Massa <fvsmassa@gmail.com>
-
- 23 Mar, 2020 1 commit
-
-
bmanga authored
* Add hello world example for C++ torchvision * README updates and mention the hello_world example
-
- 03 Feb, 2020 1 commit
-
-
bmanga authored
-
- 29 Jan, 2020 1 commit
-
-
bmanga authored
* Add cmake config file generation for torchvision (Torch::Vision) * Update README * Update cmake config to export TorchVision::Vision target, adding dependencies * Update readme * Fix path issues and rename target to TorchVision::TorchVision
-
- 22 Jan, 2020 1 commit
-
-
Danny Vilela authored
* Update README to reflect strict dependency on torch==1.4.0 * 1.4 or newer.
-
- 20 Jan, 2020 1 commit
-
-
keith authored
-
- 10 Jan, 2020 1 commit
-
-
Francisco Massa authored
* Testing CI * Disable tests for Pillow 7
-
- 01 Oct, 2019 1 commit
-
-
Xiuyan Ni authored
-
- 29 Aug, 2019 1 commit
-
-
Francisco Massa authored
-
- 21 Aug, 2019 1 commit
-
-
Vincent QB authored
-
- 06 Jul, 2019 1 commit
-
-
Shahriar authored
-
- 24 May, 2019 1 commit
-
-
Konstantin Lopuhin authored
* Allow forcing GPU build with FORCE_CUDA=1 This is convenient to e.g. build with GPU support inside a docker image * Document FORCE_CUDA
-
- 21 May, 2019 1 commit
-
-
Francisco Massa authored
-
- 08 Jan, 2019 2 commits
-
-
Will Price authored
Test installed version of package To test against the installed version of the package (which is preferably since this can catch installation file inclusion bugs) we have to deal with quirks of coverage.py. By default the ecosystem is set up to do development coverage tests (e.g. in src, or by using `pip install -e .` or `python setup.py develop`). We want to test against the version installed, to do this we have to find the install path which we'll then pass to the `--cov` arg added by `pytest-cov`. To do this, we have to cd out of the current folder, and import the installed version and get it's install path (if we don't cd out, then we end up getting the existing directory in the cwd since by default cwd is on `sys.path`) Once we have the install path, we pass that to the `--cov` of pytest, however we also want to rewrite the paths for codecov to pick them up on the website, if they don't have to code coverage with local paths, they don't register is properly. In order to that, we have a .coveragerc file that has the contents: ``` [paths] source = torchvision /**/site-packages/torchvision ``` This tells codecov to treat all paths with those prefixes as the same, so anything like `/home/travis/miniconda/envs/test-environment/lib/python2.7/site-packages/torchvision/models/__init__.py` would be treated the same as `torchvision/models/__init__.py` after running the coverage combination command. The first path seems to be special, in that all subsequent paths are rewritten to that one. Once we collect coverage, we then run `coverage run` to rewrite the installation paths in the coverage file, `.coverage`, to those expected by codecov. Phew. And that's it. N.B: Whilst adding test/__init__.py does solve the issue, it also results in PWD being added to the path, and then we'll test the development version of the package, and not the installed version (see https://docs.pytest.org/en/latest/goodpractices.html#tests-as-part-of-application-code) -
Will Price authored
-
- 03 Jan, 2018 1 commit
-
-
Alykhan Tejani authored
Closes #309
-
- 18 Dec, 2017 1 commit
-
-
Soumith Chintala authored
-
- 05 Dec, 2017 1 commit
-
-
Soumith Chintala authored
-
- 30 Oct, 2017 1 commit
-
-
Alykhan Tejani authored
-
- 07 Oct, 2017 1 commit
-
-
Iacopo Poli authored
* added Whiten transform and relative section in README * added Whiten transform and its section in README * fixed lint * fixed lint again * added linear transformation and whitening test unitary covariance * fixed lint and test * commit before rebasing * before rebase * added assertion to check matrix size * fix readme * added space around operator * replace assert with raise ValueError, fix spaces and readme
-
- 02 Oct, 2017 1 commit
-
-
Po-Hsien Chu authored
-
- 21 Sep, 2017 1 commit
-
-
Alykhan Tejani authored
update SVHN docs to note label change for digit 0
-
- 19 Sep, 2017 1 commit
-
-
Mikhail Korobov authored
* add Inception and Densenet; * document that pretrained VGG is available; * fix a typo.
-
- 04 Sep, 2017 1 commit
-
-
Alykhan Tejani authored
Some links were not displaying properly
-
- 02 Sep, 2017 1 commit
-
-
Dr. Kashif Rasul authored
* added FashionMNIST dataset * documentation * fixed formatting * fixed formatting
-
- 07 Apr, 2017 1 commit
-
-
Dmitry Ulyanov authored
* add pad_value argument * add argument to save_image * fix space * requested change of order * update docs
-
- 06 Apr, 2017 1 commit
-
-
Huan Yang authored
* Fixed border missing on bottom and right side using make_grid * Add support for Transforms.Scale([h, w]) with specific height and width if self.size is a int then scale the image with the shorter side, otherwise if self.size is a list then scale the image to self.size directly * Add assert of size and doc for README Add assert of size and doc for README * Fix linter problem Fix linter problem * Add test for Scale Add test for Scale * Add both tuple and list support for Scale.size Add both tuple and list support for Scale.size * Add order of Scale.size in document and test case for list type of Scale.size Add order of Scale.size in document and test case for list type of Scale.size
-
- 29 Mar, 2017 1 commit
-
-
Edgar Riba authored
-
- 18 Mar, 2017 2 commits
-
-
Soumith Chintala authored
-
edgarriba authored
-
- 17 Mar, 2017 3 commits
-
-
Soumith Chintala authored
-
Soumith Chintala authored
-
Uridah Sami Ahmed authored
is already downloaded* for CIFAR and STL10
-
- 16 Mar, 2017 2 commits
-
-
Uridah Sami Ahmed authored
-
Soumith Chintala authored
-
- 05 Mar, 2017 1 commit
-
-
Sri Krishna authored
Fixed a wrong folder name.
-
- 02 Mar, 2017 1 commit
-
-
Elad Hoffer authored
-
- 27 Feb, 2017 1 commit
-
-
Luke Yeager authored
Install pytorch with conda. Most of .travis.yml copied from the example provided by the conda folks at: https://conda.io/docs/travis.html
-