test in Platius model #19
-
Hi Cuong, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi Hiep, The code had been developed a couple of years ago. I then decided to rewrite to put it into one structure specified in As what I can recall, the prefix By the way, if you just want to discuss about the meaning of the code, please open a discussion instead of issue. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your detailed explanation! |
Beta Was this translation helpful? Give feedback.
Hi Hiep,
The code had been developed a couple of years ago. I then decided to rewrite to put it into one structure specified in
MLBase.py
. Thus, there might remain code adopted from previous implementation.As what I can recall, the prefix
eps_
denotes "episode" or "task" in meta-learning. Thus, theeps_generator
is an interative object/function that generates the training and validation split of a task. This had been done before implementing theEpisodeSampler
class inEpisodeSampler.py
. In that implementation, a task was generated by simply sampling a number of class labels, e.g. sampling 5 class labels out of 64 classes in mini-ImageNet followed by sampling training and validation spli…