Skip to content

Commit 8c7d5cf

Browse files
authored
Merge branch 'main' into onnnxxnxnxnxnxnnx
2 parents c91fd7c + acbfd8d commit 8c7d5cf

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ docs/source/auto_examples/
1616
docs/source/gen_modules/
1717
docs/source/generated/
1818
docs/source/models/generated/
19+
docs/source/sg_execution_times.rst
1920
# pytorch-sphinx-theme gets installed here
2021
docs/src
2122

@@ -42,3 +43,5 @@ xcuserdata/
4243
# direnv
4344
.direnv
4445
.envrc
46+
47+
scripts/release_notes/data.json

torchvision/datasets/lsun.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __len__(self) -> int:
5555

5656

5757
class LSUN(VisionDataset):
58-
"""`LSUN <https://www.yf.io/p/lsun>`_ dataset.
58+
"""`LSUN <https://paperswithcode.com/dataset/lsun>`_ dataset.
5959
6060
You will need to install the ``lmdb`` package to use this dataset: run
6161
``pip install lmdb``

torchvision/models/googlenet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def eager_outputs(self, x: Tensor, aux2: Tensor, aux1: Optional[Tensor]) -> Goog
171171

172172
def forward(self, x: Tensor) -> GoogLeNetOutputs:
173173
x = self._transform_input(x)
174-
x, aux1, aux2 = self._forward(x)
174+
x, aux2, aux1 = self._forward(x)
175175
aux_defined = self.training and self.aux_logits
176176
if torch.jit.is_scripting():
177177
if not aux_defined:

0 commit comments

Comments
 (0)