Skip to content

Commit 68e40fc

Browse files
authored
Merge branch 'site' into site-v1.4.0
2 parents e0f2df6 + a4c72fb commit 68e40fc

File tree

278 files changed

+305
-305
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

278 files changed

+305
-305
lines changed

_news/news-item-1.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
order: 1
3-
link: https://pytorch.org/blog/pytorch-adds-new-tools-and-libraries-welcomes-preferred-networks-to-its-community/
4-
summary: PyTorch adds new tools and libraries, welcomes Preferred Networks to its community.
3+
link: https://pytorch.org/blog/pytorch-1-dot-4-released-and-domain-libraries-updated/
4+
summary: PyTorch 1.4 is now available - adds ability to do fine grain build level customization for PyTorch Mobile, updated domain libraries, and new experimental features.
55
---
66

77

_news/news-item-2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
order: 2
3-
link: https://pytorch.org/blog/openmined-and-pytorch-launch-fellowship-funding-for-privacy-preserving-ml/
4-
summary: OpenMined and PyTorch partner to launch fellowship funding for privacy-preserving ML community.
3+
link: https://pytorch.org/blog/pytorch-adds-new-tools-and-libraries-welcomes-preferred-networks-to-its-community/
4+
summary: PyTorch adds new tools and libraries, welcomes Preferred Networks to its community.
55
---
66

_news/news-item-3.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
order: 3
3-
link: http://bit.ly/2JdGIV9
4-
summary: Watch the full livestream from the 2019 PyTorch Developer Conference.
3+
link: https://pytorch.org/blog/openmined-and-pytorch-launch-fellowship-funding-for-privacy-preserving-ml/
4+
summary: OpenMined and PyTorch partner to launch fellowship funding for privacy-preserving ML community.
55
---

_posts/2020-1-16-pytorch-1-dot-4-released-and-domain-libraries-updated.md renamed to _posts/2020-1-15-pytorch-1-dot-4-released-and-domain-libraries-updated.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ System.out.println("shape: " + Arrays.toString(output.shape()));
6767
System.out.println("data: " + Arrays.toString(output.getDataAsFloatArray()));
6868
```
6969

70-
Learn more about how to use PyTorch from Java [here](https://github.com/pytorch/java-demo), and see the full Javadocs API documentation [here](https://pytorch.org/javadoc/).
70+
Learn more about how to use PyTorch from Java [here](https://github.com/pytorch/java-demo), and see the full Javadocs API documentation [here](https://pytorch.org/docs/stable/packages.html).
7171

7272
For the full 1.4 release notes, see [here](https://github.com/pytorch/pytorch/releases).
7373

assets/quick-start-module.js

+26-26
Original file line numberDiff line numberDiff line change
@@ -316,37 +316,37 @@ function commandMessage(key) {
316316
"stable,pip,macos,cudanone,python3.7": "pip3 install torch torchvision",
317317

318318
"stable,pip,linux,cudanone,python2.7":
319-
"pip install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html",
319+
"pip install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html",
320320

321321
"stable,pip,linux,cuda9.2,python2.7":
322-
"pip install torch==1.3.1+cu92 torchvision==0.4.2+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
322+
"pip install torch==1.4.0+cu92 torchvision==0.5.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
323323

324324
"stable,pip,linux,cuda10.1,python2.7":
325325
"pip install torch torchvision",
326326

327327
"stable,pip,linux,cudanone,python3.5":
328-
"pip3 install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html",
328+
"pip3 install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html",
329329

330330
"stable,pip,linux,cuda9.2,python3.5":
331-
"pip3 install torch==1.3.1+cu92 torchvision==0.4.2+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
331+
"pip3 install torch==1.4.0+cu92 torchvision==0.5.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
332332

333333
"stable,pip,linux,cuda10.1,python3.5":
334334
"pip3 install torch torchvision",
335335

336336
"stable,pip,linux,cudanone,python3.6":
337-
"pip3 install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html",
337+
"pip3 install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html",
338338

339339
"stable,pip,linux,cuda9.2,python3.6":
340-
"pip3 install torch==1.3.1+cu92 torchvision==0.4.2+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
340+
"pip3 install torch==1.4.0+cu92 torchvision==0.5.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
341341

342342
"stable,pip,linux,cuda10.1,python3.6":
343343
"pip3 install torch torchvision",
344344

345345
"stable,pip,linux,cudanone,python3.7":
346-
"pip3 install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html",
346+
"pip3 install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html",
347347

348348
"stable,pip,linux,cuda9.2,python3.7":
349-
"pip3 install torch==1.3.1+cu92 torchvision==0.4.2+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
349+
"pip3 install torch==1.4.0+cu92 torchvision==0.5.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
350350

351351
"stable,pip,linux,cuda10.1,python3.7":
352352
"pip3 install torch torchvision",
@@ -361,58 +361,58 @@ function commandMessage(key) {
361361
"# PyTorch does not support Python 2.7 on Windows. Please install with Python 3.",
362362

363363
"stable,pip,windows,cudanone,python3.5":
364-
"pip3 install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html",
364+
"pip3 install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html",
365365

366366
"stable,pip,windows,cuda9.2,python3.5":
367-
"pip3 install torch==1.3.1+cu92 torchvision==0.4.2+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
367+
"pip3 install torch==1.4.0+cu92 torchvision==0.5.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
368368

369369
"stable,pip,windows,cuda10.1,python3.5":
370-
"pip3 install torch===1.3.1 torchvision===0.4.2 -f https://download.pytorch.org/whl/torch_stable.html",
370+
"pip3 install torch===1.4.0 torchvision===0.5.0 -f https://download.pytorch.org/whl/torch_stable.html",
371371

372372
"stable,pip,windows,cudanone,python3.6":
373-
"pip3 install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html",
373+
"pip3 install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html",
374374

375375
"stable,pip,windows,cuda9.2,python3.6":
376-
"pip3 install torch==1.3.1+cu92 torchvision==0.4.2+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
376+
"pip3 install torch==1.4.0+cu92 torchvision==0.5.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
377377

378378
"stable,pip,windows,cuda10.1,python3.6":
379-
"pip3 install torch===1.3.1 torchvision===0.4.2 -f https://download.pytorch.org/whl/torch_stable.html",
379+
"pip3 install torch===1.4.0 torchvision===0.5.0 -f https://download.pytorch.org/whl/torch_stable.html",
380380

381381
"stable,pip,windows,cudanone,python3.7":
382-
"pip3 install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html",
382+
"pip3 install torch==1.4.0+cpu torchvision==0.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html",
383383

384384
"stable,pip,windows,cuda9.2,python3.7":
385-
"pip3 install torch==1.3.1+cu92 torchvision==0.4.2+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
385+
"pip3 install torch==1.4.0+cu92 torchvision==0.5.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html",
386386

387387
"stable,pip,windows,cuda10.1,python3.7":
388-
"pip3 install torch===1.3.1 torchvision===0.4.2 -f https://download.pytorch.org/whl/torch_stable.html",
388+
"pip3 install torch===1.4.0 torchvision===0.5.0 -f https://download.pytorch.org/whl/torch_stable.html",
389389

390390
"stable,libtorch,linux,cudanone,cplusplus":
391-
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.%3Cspan%20class="x x-first x-last">3.1%2Bcpu.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.3.1%2Bcpu.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.%3Cspan%20class="x x-first x-last">3.1%2Bcpu.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.3.1%2Bcpu.zip</a>",
391+
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.%3Cspan%20class="x x-first x-last">4.0%2Bcpu.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-shared-with-deps-1.4.0%2Bcpu.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.%3Cspan%20class="x x-first x-last">4.0%2Bcpu.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-cxx11-abi-shared-with-deps-1.4.0%2Bcpu.zip</a>",
392392

393393
"stable,libtorch,linux,cuda9.2,cplusplus":
394-
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cu92/libtorch-shared-with-deps-1.%3Cspan%20class="x x-first x-last">3.1%2Bcu92.zip'>https://download.pytorch.org/libtorch/cu92/libtorch-shared-with-deps-1.3.1%2Bcu92.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cu92/libtorch-cxx11-abi-shared-with-deps-1.%3Cspan%20class="x x-first x-last">3.1%2Bcu92.zip'>https://download.pytorch.org/libtorch/cu92/libtorch-cxx11-abi-shared-with-deps-1.3.1%2Bcu92.zip</a>",
394+
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cu92/libtorch-shared-with-deps-1.%3Cspan%20class="x x-first x-last">4.0%2Bcu92.zip'>https://download.pytorch.org/libtorch/cu92/libtorch-shared-with-deps-1.4.0%2Bcu92.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cu92/libtorch-cxx11-abi-shared-with-deps-1.%3Cspan%20class="x x-first x-last">4.0%2Bcu92.zip'>https://download.pytorch.org/libtorch/cu92/libtorch-cxx11-abi-shared-with-deps-1.4.0%2Bcu92.zip</a>",
395395

396396
"stable,libtorch,linux,cuda10.1,cplusplus":
397-
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cu101/libtorch-shared-with-deps-1.%3Cspan%20class="x x-first x-last">3.1.zip'>https://download.pytorch.org/libtorch/cu101/libtorch-shared-with-deps-1.3.1.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cu101/libtorch-cxx11-abi-shared-with-deps-1.%3Cspan%20class="x x-first x-last">3.1.zip'>https://download.pytorch.org/libtorch/cu101/libtorch-cxx11-abi-shared-with-deps-1.3.1.zip</a>",
397+
"Download here (Pre-cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cu101/libtorch-shared-with-deps-1.%3Cspan%20class="x x-first x-last">4.0.zip'>https://download.pytorch.org/libtorch/cu101/libtorch-shared-with-deps-1.4.0.zip</a><br/><br> Download here (cxx11 ABI): <br/><a href='https://download.pytorch.org/libtorch/cu101/libtorch-cxx11-abi-shared-with-deps-1.%3Cspan%20class="x x-first x-last">4.0.zip'>https://download.pytorch.org/libtorch/cu101/libtorch-cxx11-abi-shared-with-deps-1.4.0.zip</a>",
398398

399399
"stable,libtorch,macos,cudanone,cplusplus":
400-
"MacOS binaries do not support Java. Support is only available for Linux. Download here for C++: <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.%3Cspan%20class="x x-first x-last">3.1.zip'> https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.3.1.zip </a>",
400+
"MacOS binaries do not support Java. Support is only available for Linux. Download here for C++: <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.%3Cspan%20class="x x-first x-last">4.0.zip'> https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.4.0.zip </a>",
401401

402402
"stable,libtorch,macos,cuda9.2,cplusplus":
403-
"MacOS binaries do not support Java. Support is only available for Linux. MacOS binaries do not support CUDA. Download CPU libtorch here for C++: <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.%3Cspan%20class="x x-first x-last">3.1.zip'> https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.3.1.zip </a>",
403+
"MacOS binaries do not support Java. Support is only available for Linux. MacOS binaries do not support CUDA. Download CPU libtorch here for C++: <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.%3Cspan%20class="x x-first x-last">4.0.zip'> https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.4.0.zip </a>",
404404

405405
"stable,libtorch,macos,cuda10.1,cplusplus":
406-
"MacOS binaries do not support Java. Support is only available for Linux. MacOS binaries do not support CUDA. Download CPU libtorch here for C++: <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.%3Cspan%20class="x x-first x-last">3.1.zip'> https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.3.1.zip </a>",
406+
"MacOS binaries do not support Java. Support is only available for Linux. MacOS binaries do not support CUDA. Download CPU libtorch here for C++: <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.%3Cspan%20class="x x-first x-last">4.0.zip'> https://download.pytorch.org/libtorch/cpu/libtorch-macos-1.4.0.zip </a>",
407407

408408
"stable,libtorch,windows,cudanone,cplusplus":
409-
"Windows binaries do not support Java. Support is only available for Linux. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.%3Cspan%20class="x x-first x-last">3.1.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.3.1.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.%3Cspan%20class="x x-first x-last">3.1.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.3.1.zip</a>",
409+
"Windows binaries do not support Java. Support is only available for Linux. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.%3Cspan%20class="x x-first x-last">4.0.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-1.4.0.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.%3Cspan%20class="x x-first x-last">4.0.zip'>https://download.pytorch.org/libtorch/cpu/libtorch-win-shared-with-deps-debug-1.4.0.zip</a>",
410410

411411
"stable,libtorch,windows,cuda9.2,cplusplus":
412-
"Windows binaries do not support Java. Support is only available for Linux. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/cu92/libtorch-win-shared-with-deps-1.%3Cspan%20class="x x-first x-last">3.1.zip'>https://download.pytorch.org/libtorch/cu92/libtorch-win-shared-with-deps-1.3.1.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/cu92/libtorch-win-shared-with-deps-debug-1.%3Cspan%20class="x x-first x-last">3.1.zip'>https://download.pytorch.org/libtorch/cu92/libtorch-win-shared-with-deps-debug-1.3.1.zip</a>",
412+
"Windows binaries do not support Java. Support is only available for Linux. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/cu92/libtorch-win-shared-with-deps-1.%3Cspan%20class="x x-first x-last">4.0.zip'>https://download.pytorch.org/libtorch/cu92/libtorch-win-shared-with-deps-1.4.0.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/cu92/libtorch-win-shared-with-deps-debug-1.%3Cspan%20class="x x-first x-last">4.0.zip'>https://download.pytorch.org/libtorch/cu92/libtorch-win-shared-with-deps-debug-1.4.0.zip</a>",
413413

414414
"stable,libtorch,windows,cuda10.1,cplusplus":
415-
"Windows binaries do not support Java. Support is only available for Linux. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-1.%3Cspan%20class="x x-first x-last">3.1.zip'>https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-1.3.1.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-debug-1.%3Cspan%20class="x x-first x-last">3.1.zip'>https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-debug-1.3.1.zip'/a>",
415+
"Windows binaries do not support Java. Support is only available for Linux. Download here for C++ (Release version): <br/><a href='https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-1.%3Cspan%20class="x x-first x-last">4.0.zip'>https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-1.4.0.zip</a><br/><br> Download here for C++ (Debug version): <br/><a href='https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-debug-1.%3Cspan%20class="x x-first x-last">4.0.zip'>https://download.pytorch.org/libtorch/cu101/libtorch-win-shared-with-deps-debug-1.4.0.zip'/a>",
416416

417417
"preview,conda,linux,cuda9.2,python2.7":
418418
"conda install pytorch torchvision cudatoolkit=9.2 -c pytorch-nightly",

docs/master/__config__.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@
159159

160160

161161
<div class="version">
162-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
162+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
163163
</div>
164164

165165

docs/master/_modules/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/__config__.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/_jit_internal.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/_tensor_str.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/_utils.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/anomaly_mode.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/function.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/grad_mode.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/gradcheck.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

docs/master/_modules/torch/autograd/profiler.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159

160160
<div class="version">
161-
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+01010f5 &#x25BC</a>
161+
<a href='http://pytorch.org/docs/versions.html'>1.5.0a0+7df5dc2 &#x25BC</a>
162162
</div>
163163

164164

0 commit comments

Comments
 (0)