From edf8d46123c3a1cf4d4c3e31a402a60c090992a6 Mon Sep 17 00:00:00 2001 From: Elaina Claus Date: Thu, 25 Dec 2025 02:13:23 +0000 Subject: [PATCH] wut --- pairwise_comp_nn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pairwise_comp_nn.py b/pairwise_comp_nn.py index 6bfff5f..84e5299 100644 --- a/pairwise_comp_nn.py +++ b/pairwise_comp_nn.py @@ -29,7 +29,7 @@ class PairwiseComparator(nn.Module): ) def forward(self, a, b): - # trying to force antisym here: h(a,b)=−h(b,a) + # trying to force antisym here: h(a,b)=-h(b,a) phi = self.head(self.embed(a-b)) phi_neg = self.head(self.embed(b-a)) logit = phi - phi_neg