ekt1701

Results 3 comments of ekt1701

I have been experimenting with the use of stop words. Here is a sample Python code: ``` stop_words = ['the', 'of', 'an','is','was'] def sanitize(user_input, stop_words): return [w for w in...

I am experimenting with stopwords and fuzzy matching to solve riddles. I scrape the riddle and answer from http://goodriddlesnow.com/ then filter out the stop words from the answer, this works...

What you are thinking is similar to the code I posted above, except, it removes the stop words and leaves the keywords which is sent to the bot. If you...