In this article, we’ll discuss some of the NLP preprocessing techniques while handling the text data. As you have guessed from the title we’ll use spaCy for most of our tasks in this article. So, if you […]
Continue readingMore TagCategory: nlp
WordClouds in Python
In this article, we are going to see how to create a word cloud in python. A word cloud creates a collage of most prominent words from the given text. The size of each word is […]
Continue readingMore TagConverting Raw Text to Numerical Vectors using Bag of Words, N_Grams and TF-IDF
If we are dealing with text documents and want to perform machine learning on text, we can’t directly work with raw text. We first need to convert the text into numbers or vectors of numbers. In this article, […]
Continue readingMore Tag