Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tutorials/01-basics/pytorch_basics/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ def __len__(self):
param.requires_grad = False

# Replace the top layer for finetuning.
# top layer (or fully connected layer) refers to
# the last layer before the output of the network
resnet.fc = nn.Linear(resnet.fc.in_features, 100) # 100 is an example.

# Forward pass.
Expand Down