Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Min-hash at the category level #1044

Open
jeromedockes opened this issue Aug 30, 2024 · 0 comments
Open

Min-hash at the category level #1044

jeromedockes opened this issue Aug 30, 2024 · 0 comments
Labels
enhancement New feature or request

Comments

@jeromedockes
Copy link
Member

Problem Description

I have a column where each entry is a variable-length list or set.
for example, I have a table like:

user id, purchased product id

and I group by user_id. Thus I get for each user a list of all the products the user purchased. I want to extract features to describe that information.

One simple and potentially effective option is to use min-hash, but at the level of the entries in the list (ie in this case, each product id would get hashed and we would compute the min over all the product ids purchased by a user, for each hashing function) rather than character n-grams.

Feature Description

it could be built into the minhashencoder, where if the column values are arrow or python lists or arrays it switches to that behavior. it could also be built into the agg joiner somehow.

Alternative Solutions

No response

Additional Context

came up during euroscipy 2024 discussions

@jeromedockes jeromedockes added the enhancement New feature or request label Aug 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant