Skip to content

Commit

Permalink
Merge branch 'main' into onnnxxnxnxnxnxnnx
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasHug authored Nov 27, 2024
2 parents c91fd7c + acbfd8d commit 8c7d5cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ docs/source/auto_examples/
docs/source/gen_modules/
docs/source/generated/
docs/source/models/generated/
docs/source/sg_execution_times.rst
# pytorch-sphinx-theme gets installed here
docs/src

Expand All @@ -42,3 +43,5 @@ xcuserdata/
# direnv
.direnv
.envrc

scripts/release_notes/data.json
2 changes: 1 addition & 1 deletion torchvision/datasets/lsun.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __len__(self) -> int:


class LSUN(VisionDataset):
"""`LSUN <https://www.yf.io/p/lsun>`_ dataset.
"""`LSUN <https://paperswithcode.com/dataset/lsun>`_ dataset.
You will need to install the ``lmdb`` package to use this dataset: run
``pip install lmdb``
Expand Down
2 changes: 1 addition & 1 deletion torchvision/models/googlenet.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def eager_outputs(self, x: Tensor, aux2: Tensor, aux1: Optional[Tensor]) -> Goog

def forward(self, x: Tensor) -> GoogLeNetOutputs:
x = self._transform_input(x)
x, aux1, aux2 = self._forward(x)
x, aux2, aux1 = self._forward(x)
aux_defined = self.training and self.aux_logits
if torch.jit.is_scripting():
if not aux_defined:
Expand Down

0 comments on commit 8c7d5cf

Please sign in to comment.