document_cluster
document_cluster copied to clipboard
A guide to document clustering in Python
Hi, thanks for a great article, i noticed an issue with the following code i had to change this: ``` #add label in x,y position with the label as the...
It took me a while to figure out what an ipython notebook was and how to open it and run the code. Then I tried to create a pull request...
``` synopses_wiki = open('synopses_list_wiki.txt').read().split('\n BREAKS HERE') synopses_wiki = synopses_wiki[:100] synopses_clean_wiki = [] for text in synopses_wiki: text = BeautifulSoup(text, 'html.parser').getText() #strips html formatting and converts to unicode synopses_clean_wiki.append(text) synopses_wiki =...
Hi I just went over your document clustering tutorial and it is really amazing ! great work! I am trying to conduct a clustering of e-mails, so I have been...