Posts
All the articles I've posted.
-
Add anaconda to right-click menu in windows
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.
-
How to open sublime text from the windows command line
Sublime Text is a light-weight IDE for quick development. We can open Sublime text from the command line just like VS Code.
-
Mnist handwritten digit classification using CNN
Mnist dataset is used as an introduction to neural network for beginners. Convolutional Neural Networks (CNNs) are the current state-of-art architecture mainly used for the image classification tasks.
-
Sentiment analysis flask web app using python and NLTK
Sentiment analysis in python is really simple because of the NLTK library and it's pretrained model called VADER(Valence Aware Dictionary for Sentiment Reasoning)
-
Difference between sort() and sorted() in python
The primary difference between the list sort() function and the sorted() function is that the sort() function will modify the list it is called on.
-
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.
-
CSS to ignore parent padding in 4 lines
You need a full-width container element because the design has a background-color that goes from edge-to-edge horizontally. But the content inside doesn’t necessarily need to be edge-to-edge.
-
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.