You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build ranking functionality for a set of documents. The ranking criteria can be as simple as the number of keywords mined. Other criteria include relevance to a queried topic and readability level.
Objectives
Find some metrics that can be used to score documents for ranking. For example, textstat has functions that judge reading level by grade.
Write a function that ranks documents based on different scoring metrics. The function can simply return a reordered list of indexes or names of documents.
Add parameters in function for order direction (highest or lowest score first), skip the top n documents, limit the return to the top n ranked documents, and other editions if you want.
The text was updated successfully, but these errors were encountered:
Description
Build ranking functionality for a set of documents. The ranking criteria can be as simple as the number of keywords mined. Other criteria include relevance to a queried topic and readability level.
Objectives
The text was updated successfully, but these errors were encountered: