<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[WanneBeeNerd's Blog]]></title><description><![CDATA[Software Developer]]></description><link>https://wannabeenerd.hashnode.dev</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 13:44:49 GMT</lastBuildDate><atom:link href="https://wannabeenerd.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Learn & Let Learn: Chapter 2 - Introduction to Natural Language Processing]]></title><description><![CDATA[Hey there!
NLP stands for Natural Language Processing. This is an introductory blog on NLP to aware you of the basics, how to kick start, and some future scopes. Let's start with the basics, shall we?

What is Natural Language Processing?
In easy wor...]]></description><link>https://wannabeenerd.hashnode.dev/introduction-to-natural-language-processing</link><guid isPermaLink="true">https://wannabeenerd.hashnode.dev/introduction-to-natural-language-processing</guid><category><![CDATA[nlp]]></category><category><![CDATA[data analysis]]></category><category><![CDATA[basics]]></category><category><![CDATA[Machine Learning]]></category><category><![CDATA[Blogging]]></category><dc:creator><![CDATA[Lajeet Adhikary]]></dc:creator><pubDate>Mon, 03 May 2021 04:47:21 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1620020322906/OTGmlHz2Ih.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hey there!</p>
<p>NLP stands for Natural Language Processing. This is an introductory blog on NLP to aware you of the basics, how to kick start, and some future scopes. Let's start with the basics, shall we?</p>
<hr />
<h1 id="what-is-natural-language-processing">What is Natural Language Processing?</h1>
<p>In easy words, it is broadly defined as the automatic manipulation of the natural language, like speech &amp; text, by software.</p>
<p><strong>According to <a target="_blank" href="https://en.wikipedia.org/wiki/Natural_language_processing">Wikipedia</a>:</strong> It is a subfield of linguistics, computer science, and artificial intelligence concerned with the interactions between computers and human language, in particular how to program computers to process and analyze large amounts of natural language data.</p>
<p>It's been around for quite a couple of decades, growing with the rise of computers &amp; powerful machines. It is quite a difficult job to understand what the natural language is meaning based on the context of the person who is speaking. </p>
<blockquote>
<p>It is hard from the standpoint of the child, who must spend many years acquiring a language … it is hard for the adult language learner, it is hard for the scientist who attempts to model the relevant phenomena, and it is hard for the engineer who attempts to build systems that deal with natural language input or output. These tasks are so hard that Turing could rightly make fluent conversation in natural language the centerpiece of his test for intelligence.</p>
</blockquote>
<p>— Page 248, <a target="_blank" href="https://www.amazon.com/Mathematical-Linguistics-Information-Knowledge-Processing/dp/184996694X/ref=as_li_ss_tl?ie=UTF8&amp;qid=1501196677&amp;sr=8-1&amp;keywords=Mathematical+Linguistics&amp;linkCode=sl1&amp;tag=inspiredalgor-20&amp;linkId=e2c0e010d12b8955ced2d8cb75049a4d">Mathematical Linguistics</a>, 2010.</p>
<p>Okay, let's make it simple to understand:</p>
<p>Suppose, you are a 10-year old and you have asked a question (let's say: <strong>Theory of Relativity</strong>)</p>
<p>So, the answer should be in such a way that it should make a 10-year old understand. Then and then only, it will be useful.</p>
<p>But the same answer will not be as informative to a 20-year old or a 30-year old or Scientist who is actually researching more about it. So, based on the subject the explanation may differ which should make much more sense &amp; informative at the same time.</p>
<blockquote>
<p>So, here comes into the picture, introduction to Machine Learning &amp; Artificial Intelligence, where the latter is a bubble which comprises of both, Natural Language Processing &amp; Machine Learning. All of these are used interchangeably.</p>
</blockquote>
<hr />
<h1 id="ways-to-process-natural-language">Ways to process Natural Language</h1>
<ol>
<li>Syntactic Analysis</li>
<li>Semantic Analysis</li>
</ol>
<h2 id="syntactic-analysis">Syntactic Analysis</h2>
<p>Parsing the content (input) based on basic grammar rules, sentence formations, the way the words are organized, and how the words are relating to each other.</p>
<p>It includes the following sub-tasks:</p>
<ul>
<li><strong>Tokenization</strong> - Breaking the content in smaller words/phrases/sentences</li>
<li><strong>Part of speech(PoS) tagging</strong> - taking into account the verb, adverb, noun, adjective to get the basic context of the content. It helps in Tokenization</li>
<li><strong>Lemmatization &amp; Stemming</strong> - reducing the inflected words. It helps in easier analyzation</li>
<li><strong>Removal of Stop Words</strong> - removal of fillers and frequently used words (For eg: I, they, have, like, suppose, etc.)</li>
</ul>
<h2 id="semantic-analysis">Semantic Analysis</h2>
<p>It focuses on understanding the meaning of the content.</p>
<p>It includes the following sub-tasks:</p>
<ul>
<li><strong>Word Sense Disambiguation</strong> - understanding the way a particular word has been used in a given sentence or group of sentences</li>
<li><strong>Relation Extraction</strong> - tries to create a co-relation between subjects in the content (for eg: in-between places, person, organization, etc.)</li>
</ul>
<hr />
<h1 id="uses-of-nlp">Uses of NLP</h1>
<ol>
<li>Sentiment Analysis</li>
<li>Language Translation</li>
<li>Text Extraction / Summarization</li>
<li>Chat Bots</li>
<li>Improvising Analytical Tools</li>
<li>Classification</li>
</ol>
<p><em>And the list goes on. Please mention in the comment section, if you find any interesting application of NLP. Love to learn and get a new perspective.</em></p>
<hr />
<h1 id="how-to-kick-start">How to Kick Start?</h1>
<ul>
<li>Programming pre-requisite: To learn the basics/syntax of Python</li>
<li>Install a suitable IDE for your workspace. I recommend, PyCharm</li>
<li>Let's start with the basics, using the Syntactic Analysis (as there are a lot of open-source projects + models which are good for learning).</li>
<li>Let's try Tokenization: separating all the words in the given content. Logic: As the content is separated by space, so write a logic to separate it out.</li>
<li>Removal of Stop words: As you have all the words separated, now delete all the stop words from the list (You can find a model in Python which contains all the stop words based on a particular language)</li>
<li>Add normalization: There is a lot of open-source normalization logic available. You can use anyone. To create your own, stay tuned! (I will cover this part in detail in my upcoming blogs)</li>
</ul>
<hr />
<h1 id="future-scope">Future Scope</h1>
<ol>
<li>Learn the basics by practicing, using open source projects already available</li>
<li>Create your own logic for NLP</li>
<li>Extracting meaningful insights</li>
<li>Creating Chat Bots</li>
<li>DIY: custom models and analyzer tools</li>
</ol>
<hr />
<p><strong>Do share your thoughts on this topic in the comments section. Will love to know your perspective on the same 🙂</strong></p>
<p>Thank you for reading! If you have reached so far, please like the article. It will encourage me to write more such articles. Do share your valuable suggestions, I appreciate your honest feedback!</p>
<p>And with that, it's a wrap! I hope you found the article useful. I write about career, blogging, programming, and productivity. If this is something that interests you, please share the article with your friends and connections.</p>
<p>Would love to connect with you on  <a target="_blank" href="https://twitter.com/LajeetAdhikary">Twitter</a>  |  <a target="_blank" href="https://www.linkedin.com/in/lajeetadhikary/">LinkedIn</a> </p>
]]></content:encoded></item><item><title><![CDATA[Learn & Let Learn: Chapter 1 -
Introduction to Machine Learning]]></title><description><![CDATA[Hey there! 
This is an introductory blog on Machine Learning. I am sure most of you must have heard this term on any social media platform or through your technical community, but have you got curious enough to try it out yourself?
If yes, that's gre...]]></description><link>https://wannabeenerd.hashnode.dev/learn-and-let-learn-introduction-to-machine-learning</link><guid isPermaLink="true">https://wannabeenerd.hashnode.dev/learn-and-let-learn-introduction-to-machine-learning</guid><category><![CDATA[Machine Learning]]></category><category><![CDATA[introduction]]></category><category><![CDATA[first post]]></category><category><![CDATA[Learning Journey]]></category><category><![CDATA[learning]]></category><dc:creator><![CDATA[Lajeet Adhikary]]></dc:creator><pubDate>Thu, 29 Apr 2021 04:07:23 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1620020360378/FfVa0jkX6.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Hey there! </p>
<p>This is an introductory blog on Machine Learning. I am sure most of you must have heard this term on any social media platform or through your technical community, but have you got curious enough to try it out yourself?</p>
<p><strong>If yes,</strong> that's great! Comment down your GitHub repo links or any learnings/findings. I am curious to check them out</p>
<p><strong>If no,</strong> that's great. You are about to get a good &amp; informatory start. So, let's start with the basics, shall we?</p>
<hr />
<h2 id="what-is-machine-learning">What is Machine Learning?</h2>
<p>Machine learning is a method of <strong><em>data analysis</em></strong> that <strong><em>automates</em></strong> analytical model building. It is a branch of artificial intelligence based on the idea that <strong><em>systems can learn from data, identify patterns and make decisions</em></strong> with minimal human intervention.</p>
<h2 id="evolution-of-machine-learning">Evolution of Machine Learning</h2>
<p>As it requires analyzing a vast set of data and learn by itself, it is a necessity to have a large computational power. So, in the past, it was quite a time taking a job to implement and test out complex models for machine learning due to the lack of high-powered computers/machines.</p>
<p>While many machine learning algorithms have been around for a long time, the ability to automatically apply complex mathematical calculations to big data – over and over, faster and faster – is a recent development. </p>
<p>You might be familiar with some of its applications:</p>
<ul>
<li><p>Self-driving cars by Google</p>
</li>
<li><p>Online recommendations by some popular websites like Netflix, Amazon, etc</p>
</li>
<li><p>Fraud / Spam Detection</p>
</li>
<li><p>Sentiment Analysis</p>
</li>
<li><p>Text Summarization</p>
</li>
</ul>
<p>and lots more...</p>
<h2 id="personal-encounter">Personal Encounter</h2>
<p>Personally, I am getting my hands dirty with some of these applications of Machine Learning i.e. <strong>Natural Langauge Processing</strong> &amp; <strong>Generating Meaningful Insights</strong>. Starting off with some open-source models to achieve the end goal, then tending towards the creation of custom models solving a particular use case.</p>
<p>Stay Tuned. Thanks!</p>
<hr />
<p><strong>Do share your thoughts on this topic in the comments section. Will love to know your perspective on the same 🙂</strong></p>
<p>Thank you for reading! If you have reached so far, please like the 
article. It will encourage me to write more such articles. Do share your
 valuable suggestions, I appreciate your honest feedback!</p>
<p>And with that, it's a wrap! I hope you found the article useful. I 
write about career, blogging, programming, and productivity. If this is 
something that interests you, please share the article with your friends
 and connections.</p>
<p>Would love to connect with you on  <a target="_blank" href="https://twitter.com/LajeetAdhikary">Twitter</a>  |  <a target="_blank" href="https://www.linkedin.com/in/lajeetadhikary/">LinkedIn</a></p>
]]></content:encoded></item></channel></rss>