findRelevantDict : Dict String Basics.Int -> List QuestionsBank.Answer -> Maybe QuestionsBank.Answer
Finds the sentences with the most occurances from a search string Returns the related answer for the returned quesiton in the data.
wordsDict : Tokens -> Histogram
This will make a dictionary from a sentence
sentenceHistograms : List Sentence -> List Histogram
This will make a dictionary from data and do some tokenization as well.
tokenize : Sentence -> Tokens
This will tokenize the words and remove symbols.
stopWords : Tokens
This will remove all stopWords from the data, which are mentioned here.
toHistogram : Tokens -> Histogram
This will convert sentences to words histograms.