Merge pull request #2 from openai/mike_fix_link

[Mike] Fix link
This commit is contained in:
Mike Heaton 2022-06-09 17:32:26 -07:00 committed by GitHub
commit c5aed8b636
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -462,7 +462,7 @@ In more advanced search systems, the the cosine similarity of embeddings can be
Recommendations are quite similar to search, except that instead of a free-form text query, the inputs are items in a set. And instead of using pairs of doc-query models, you can use a single symmetric similarity model (e.g., `text-similarity-curie-001`). Recommendations are quite similar to search, except that instead of a free-form text query, the inputs are items in a set. And instead of using pairs of doc-query models, you can use a single symmetric similarity model (e.g., `text-similarity-curie-001`).
An example of how to use embeddings for recommendations is shown in [Recommendations.ipynb](examples/Recommendations.ipynb). An example of how to use embeddings for recommendations is shown in [Recommendation_using_embeddings.ipynb](examples/Recommendation_using_embeddings.ipynb).
Similar to search, these cosine similarity scores can either be used on their own to rank items or as features in larger ranking algorithms. Similar to search, these cosine similarity scores can either be used on their own to rank items or as features in larger ranking algorithms.