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

Update config.toml #682

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions config/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,13 @@ popular_window = "720h"
# The type of neighbors for users. There are three types:
# similar: Neighbors are found by number of common labels.
# related: Neighbors are found by number of common liked items.
# auto: If a user have labels, neighbors are found by number of common labels.
# If this user have no labels, neighbors are found by number of common liked items.
# auto: average of relevance and similarity.
# Correlation refers to the number of common items of users (or the number of common users of items),
# and similarity refers to the number of common tags between the two. In the new version,
# "automatic" is the average value of correlation and similarity.
# The default value is "auto".
neighbor_type = "similar"
neighbor_type = "auto"


# Enable approximate user neighbor searching using vector index. The default value is true.
enable_index = true
Expand Down