This might help the documentation later so I want to ask (before I attempt to do any PRs).
The meta-set is usually a collection of data-sets (as outlined in the paper). With this in mind is:
is a task equivalent to one data-set sampled from a meta-set? (to me 1 task is the same as 1 data set)
How many tasks do we sample during 1 episode during meta-training? (for me during one episode we sample meta_batch number of tasks
Is 1 episode the same as 1 batch_idx e.g
with tqdm(dataloader, total=args.num_batches) as pbar:
for batch_idx, batch in enumerate(pbar):
same as
with tqdm(dataloader, total=args.num_batches) as pbar:
for episode, batch in enumerate(pbar):
(to me episode === batch_idx)
I think I saw that it was used the term somewhere that episode is the same as 1 data set but I always thought 1 episode was sample a set of tasks (data sets)
hope referencing the numbers makes it more straight forward to address my questions.
This might help the documentation later so I want to ask (before I attempt to do any PRs).
The meta-set is usually a collection of data-sets (as outlined in the paper). With this in mind is:
meta_batch
number of tasksbatch_idx
e.gsame as
(to me
episode === batch_idx
)hope referencing the numbers makes it more straight forward to address my questions.