-
Notifications
You must be signed in to change notification settings - Fork 44
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
Added New Recommender Operator #889
Conversation
|
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The recommender operator spec. | ||
""" | ||
spec = config.spec | ||
self.interactions: pd.DataFrame = pd.read_csv(spec.interactions_data.url) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we make clear that the "url" arg must be a csv?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated: It can now use all the data sources supported by the operator.
|
|
|
ODSC-57945
Added Recommender Operator, designed to provide personalised recommendations based on user behaviour and preferences. The operator utilises three input datasets:
items
,users
, andinteraction
, along with specific configuration parameters and generate recommendations.csv and report.html as output.