Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Remove confusing comment in the omniglot example #112

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
5 changes: 0 additions & 5 deletions examples/maml-omniglot.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,6 @@ def train(db, net, device, meta_opt, epoch, log):


def test(db, net, device, epoch, log):
# Crucially in our testing procedure here, we do *not* fine-tune
# the model during testing for simplicity.
# Most research papers using MAML for this task do an extra
# stage of fine-tuning here that should be added if you are
# adapting this code for research.
net.train()
n_test_iter = db.x_test.shape[0] // db.batchsz

Expand Down