You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As I know, support set is training data and query set is testing data. And the query set uses for evaluating performance of model. However, in this code I realize that
In Line 138 loss_q.backward()
=> using query set (testing data) to update gradient.
You can explain in more detail here
Why not use loss of support set to update gradient, more specifically, loss.backward() (line 85 and 114)
Thanks
The text was updated successfully, but these errors were encountered:
As I know, support set is training data and query set is testing data. And the query set uses for evaluating performance of model. However, in this code I realize that
=> using query set (testing data) to update gradient.
Thanks
The text was updated successfully, but these errors were encountered: