Skip to content

Commit 177a71c

Browse files
committed
typo in reccommender
1 parent d4d471e commit 177a71c

File tree

1 file changed

+5
-5
lines changed
  • ads/opctl/operator/lowcode/recommender/model

1 file changed

+5
-5
lines changed

ads/opctl/operator/lowcode/recommender/model/svd.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,11 @@ def _build_model(self) -> Tuple[DataFrame, Dict]:
7878
return recommendations_df, metric
7979

8080
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+
)
8686
new_user_recommendations = self._get_recommendations(
8787
"__new_user__", self.spec.top_k
8888
)

0 commit comments

Comments
 (0)