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
Hello everyone! In my sequential recommendation dataset every item actually comes annotated with a list of categories (potentially with repeated values). The following would be a pretty meaningful example.
Is it possible to categorify the categories present above in a nested way so that:
the lists [[A,B], [C,D], ..], .. do not become separate tokens but remain lists of categorified elements (e.g. [[1,2], [3,4], [6]] and [[1], [5,5]])
we can then feed those into EmbeddingBag downstream?
I've tried supplying the Dataset constructor with an appropriate schema, but unfortunately failed. I could also try flattening the lists categorifying and fusing back but this looks like a inefficient and bad idea..
The text was updated successfully, but these errors were encountered:
❓ Questions & Help
Details
Hello everyone! In my sequential recommendation dataset every item actually comes annotated with a list of categories (potentially with repeated values). The following would be a pretty meaningful example.
Is it possible to categorify the categories present above in a nested way so that:
[[A,B], [C,D], ..], ..
do not become separate tokens but remain lists of categorified elements (e.g.[[1,2], [3,4], [6]]
and[[1], [5,5]]
)EmbeddingBag
downstream?I've tried supplying the Dataset constructor with an appropriate schema, but unfortunately failed. I could also try flattening the lists categorifying and fusing back but this looks like a inefficient and bad idea..
The text was updated successfully, but these errors were encountered: