This commit is contained in:
s444501 2023-02-12 19:36:00 +01:00
commit d24d515841

View File

@ -87,6 +87,9 @@ class GPT2ClassificationHeadCustom(nn.Module):
x = torch.relu(x)
x = self.dropout(x)
x = torch.relu(x)
x = self.dropout(x)
x = self.out_proj(x)
return x