Replies: 1 comment 4 replies
-
In your example, are the positive pairs (a,b) and (b,c), and the negative pairs (a,c) and (b,c) ? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there! I have a slightly unusual dataset where several raters grouped items together. That is, labels between raters do not correspond to each other, and we only have information about which items an individual rater deemed the same/different. For example, say rater 1 puts items a and b in group 1, and item c in group 2, and rater 2 puts items b and c in group 1: we would not want to consider group 1 across raters the same grouping. So far, I have used my own implementation of contrastive learning, but I would like to use this library to try more sophisticated techniques like mining or different losses.
What would you recommend as the most convenient approach to using this library in my setting? My plan so far was to accumulate the gradients across rater batches and mine items within raters? Alternatively, I could relabel the groups across raters or extend the loss classes?
Any advice would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions