Posts by Abuzer Malvi
Author Biographical Info: Eagerly seeking an opportunity to leverage my Machine Learning and Analytical Skills to pursue a career in the Data Science domain.
The Perceptron algorithm is considered to be the simplest type of Artificial Neural Network and one can use it as the starting point in ANN. Perceptrons can deal with n number of i.... Read More
In this article, we’ll discuss and illustrate how to find the optimal value of k in the K-Means clustering using the Elbow method in Python. As we are aware, K-Means follows .... Read More
In this article, we will see the conversion of a timestamp to datetime and vice-versa in Python language. This can be done using the datetime module, so let’s go ahead and im.... Read More
In order to use textual data for predictive modeling, the text data requires special preparation before you can start using it. However, there are usually two steps performed on th.... Read More
One always needs to find relationships between variables before going further with Machine Learning algorithms on the dataset. The correlation or correlation coefficient captures t.... Read More
Tensorflow placeholder() as the name suggests creates a placeholder for a tensor that will be fed later. In simple words, it allocates a block of memory for future use which allows.... Read More