Trogluddite / loombreaker

Tools for building Topic-Specific Web Indexes (CS-480 Capstone)
MIT License
0 stars 0 forks source link

make discord bot produce several markov results and select most relevant #60

Open Trogluddite opened 4 months ago

Trogluddite commented 4 months ago

currently the /search command in the discord bot doesn't actually search anything. It gets a few markov chains, then formats them into a sort of paragraph.

To make this searchy, we want to do something like this:

  1. generate several (10 or so) candidate 'paragraphs' from the MatrixMarkov instance
  2. compare the results to some target string, using some heuristic.
  3. based on that heuristic, return the top-ranked (or top-n) result(s) to the user.