Created
February 6, 2019 23:27
-
-
Save tehsven/1f4cea07f45219a20668f3014a382aa6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Scoring of Documents for a Query | |
index = SearchIndex.new | |
index.add(0, "some more examples") | |
index.add(1, "Examples are great for examples of examples") | |
index.search("examples") | |
=> returns Document 1 with score 1.0, Document 0 with score 0.5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment