Python Programming

Python is one of the most widely used programming languages. It’s getting a lot of popularity these days because of so many Python frameworks in IoT, Machine Learning, Deep Learning, and Artificial Intelligent space.

These Python Tutorials will help you in getting mastery over the Python Programming. The tips and tricks shared by us will enable you to write pythonic code with high performance, reusability, readability, and maintainability.

The tanh activation function

In deep learning, neural networks consist of neurons that work in correspondence with their weight, bias and respective activation functions. The weights and biases are adjusted based on the error in the output. This is called backpropagation. Activation functions make this process possible as they supply the gradients along with errors to update weight and

The tanh activation function Read More »

POS Tagging in NLP using Spacy

Parts of Speech (POS) are the words that perform different roles in a sentence. The English language has 8 parts of speech. They are: Nouns Pronouns Verbs Adverbs Adjectives Prepositions Conjunctions Interjunctions A PoS tag provides a considerable amount of information about a word and its neighbours. It can be used in various tasks such

POS Tagging in NLP using Spacy Read More »

An Introduction to NLP

Natural Language Processing (NLP) is a part of Computer Science, more particularly of Artificial Intelligence that deals with the interaction of computers with humans in natural languages. Humans use natural languages as a means of communication. Natural language processing aims to make computers understand natural languages as humans do and also generate them.Computers can understand

An Introduction to NLP Read More »