Tag: python
All the articles with the tag "python".
-
Find unique elements in python list
Using set() property of Python, we can easily check for the unique values. Set only stores a value once even if it is inserted more then once.
-
The complete Anaconda cheatsheet
Anaconda is a python package manager and it is really amazing, it is popular because it brings many of the tools used in data science and machine learning with just one install.
-
Mnist handwritten digit classification using tensorflow
Mnist dataset is used as an introduction to neural network for beginners. In this article I use Tensorflow and keras to build a neural network.
-
The ultimate guide to confusion matrix in machine learning
This article explains some of the very important terms in Machine learning such as Accuracy, Precision, Recall and Confusion matrix.
-
Create Random String and strong Passwords in Python in 4 lines of code
The secrets module is used for generating cryptographically strong random numbers suitable for managing data such as passwords, account authentication, security tokens, and related secrets.
-
How to build a Spam Classifier in python and sklearn
The upsurge in the volume of unwanted emails called spam has created an intense need for the development of more dependable and robust antispam filters. This tutorial will help to build a simple spam classifier using python.
-
Introduction to Word Frequency in NLP using python
Natural language processing (NLP) refers to the branch of computer science—and more specifically, the branch of artificial intelligence or AI—concerned with giving computers the ability to understand text and spoken words in much the same way human beings can.
-
Mushroom dataset analysis and classification in python
Mushroom classification is a machine learning problem and the objective is to correctly classify if the mushroom is edible or poisonous by it's specifications like cap shape, cap color, gill color, etc. using different classifiers.