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
I encountered an confusion in the _forward_impl method of the ResNetGrad class in models/vlcs.py, where conv1 is called with both x and task_label. Since conv1 is a standard torch.nn.Conv2d layer, it can only accept a single input tensor x. Passing two arguments (x and None) may result in an error?
I encountered an confusion in the _forward_impl method of the ResNetGrad class in models/vlcs.py, where conv1 is called with both x and task_label. Since conv1 is a standard torch.nn.Conv2d layer, it can only accept a single input tensor x. Passing two arguments (x and None) may result in an error?
class ResNetGrad(nn.Module):
Great work, looking forward to your team's reply
The text was updated successfully, but these errors were encountered: