Skip to content

Instantly share code, notes, and snippets.

@veekaybee

veekaybee/knn.py Secret

Created July 31, 2023 20:18
Show Gist options
  • Save veekaybee/bf25025bc1c7c6e398e4564a1beccbe5 to your computer and use it in GitHub Desktop.
Save veekaybee/bf25025bc1c7c6e398e4564a1beccbe5 to your computer and use it in GitHub Desktop.
retriever = KNNSearch(RedisConnection().conn(), ConfigManager())
conf = ConfigManager()
def get_model_results(word: str, search_conn) -> str:
data = search_conn.top_knn(word)
return render_template("index.html", data=data, query=word)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment