How many trigrams phrases can be generated from the following sentence, after performing following text cleaning steps:
- Removing stopwords
- Replacing punctuations by single space
“#Coding-Blocks is a great source to learn @machine_learning.”
My understanding: after stopword removal it would be:
Coding-Blocks great source learn machine_learning
So there would be three Trigrams:
- Coding-Blocks great source
- great source learn
- source learn machine_learning
Please let me know what I am missing here.
