File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
ads/opctl/operator/lowcode/recommender/model Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -78,11 +78,11 @@ def _build_model(self) -> Tuple[DataFrame, Dict]:
78
78
return recommendations_df , metric
79
79
80
80
def _generate_report (self ):
81
- model_description = """
82
- Singular Value Decomposition (SVD) is a matrix factorization technique used in recommendation systems to
83
- decompose a user-item interaction matrix into three constituent matrices. These matrices capture the
84
- latent factors that explain the observed interactions.
85
- """
81
+ model_description = rc . Text (
82
+ " Singular Value Decomposition (SVD) is a matrix factorization technique used in recommendation systems to \
83
+ decompose a user-item interaction matrix into three constituent matrices. These matrices capture the \
84
+ latent factors that explain the observed interactions."
85
+ )
86
86
new_user_recommendations = self ._get_recommendations (
87
87
"__new_user__" , self .spec .top_k
88
88
)
You can’t perform that action at this time.
0 commit comments