hereismari / tensorflow-maml

TensorFlow 2.0 implementation of MAML.
Apache License 2.0
84 stars 20 forks source link

I want change the model to train image classification. #5

Closed Runist closed 4 years ago

Runist commented 4 years ago

Here we go.I have some problems. First, I saw every time for model foward, we using same input "x".I can't understand, why not update copy-model by input x1, and update maml-model by input x2?Is the code same as paper?Maybe I am wrong. Second, if we train image classification, we need to make data set.The data set consist of 50 picture, and every 10 picture from same class.So we have one task.However, I don't know how to define batch. Somebody tell me I can binding 4 task that means your train 4 task at the same time.I even don't know how to input my network, how it train.