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 the matching algorithm in yelp beans can support preferences in two ways:
One is a binary option:
If the preferences don't match then don't match the people together.
+ Guaranteed match based on preference
- Increased buckets for matching, if a bucket is odd one person doesn't get matched. Number of buckets == the total of potential people that don't get matched. In the extreme case this is very bad for the population.
The other is a softer option:
If two people have preferences toward something in particular, increase weighted edges between the two of them.
+ Smaller number of buckets, less people that don't get matched.
- won't guarantee a match based on interests
- you have to source interests or generate a basic list for people to choose from
The text was updated successfully, but these errors were encountered:
Currently the matching algorithm in yelp beans can support preferences in two ways:
One is a binary option:
If the preferences don't match then don't match the people together.
+ Guaranteed match based on preference
- Increased buckets for matching, if a bucket is odd one person doesn't get matched. Number of buckets == the total of potential people that don't get matched. In the extreme case this is very bad for the population.
The other is a softer option:
If two people have preferences toward something in particular, increase weighted edges between the two of them.
+ Smaller number of buckets, less people that don't get matched.
- won't guarantee a match based on interests
- you have to source interests or generate a basic list for people to choose from
The text was updated successfully, but these errors were encountered: