Information-Retrieval
Information-Retrieval copied to clipboard
Information Retrieval algorithms developed in python. To follow the blog posts, click on the link:
Results
1
Information-Retrieval issues
Sort by
recently updated
recently updated
newest added
when i run processed_text = [] processed_title = [] for i in dataset[:N]: file = open(i[0], 'r', encoding="utf8", errors='ignore') text = file.read().strip() file.close() processed_text.append(word_tokenize(str(preprocess(text)))) processed_title.append(word_tokenize(str(preprocess(i[1])))) i got the error ---------------------------------------------------------------------------...