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
Currently its stated that (x - self.min_max[0] // split_size).int().clamp(0, self.num_embs - 1)
but I believe it should be ((x - self.min_max[0]) // split_size).int().clamp(0, self.num_embs - 1)
The text was updated successfully, but these errors were encountered:
I think there is a bug in the Embedding Encoder, see here:
PFNs/pfns/encoders.py
Line 68 in fd212b1
Currently its stated that
(x - self.min_max[0] // split_size).int().clamp(0, self.num_embs - 1)
but I believe it should be
((x - self.min_max[0]) // split_size).int().clamp(0, self.num_embs - 1)
The text was updated successfully, but these errors were encountered: