What is Kubernetes and architecture?

What is Kubernetes: Kubernetes is an open-source tool used to manage and orchestrate the containers across the nodes/server, which helps us to build cloud-native applications released by google in 2014. All top 3 cloud providers support Kubernetes as serverless offerings. Why we should adopt Kubernetes In the world of microservices, managing the deployment and scalingContinue reading “What is Kubernetes and architecture?”

Hyperparameter tuning

Before going to this blog make sure you are aware about any one of the algorithms like Decision tree, Random forest.etc….Below are the few  parameters that we need for most of the algorithms. Maximum number of leaves per tree Depth of trees. Number of trees in Random forest Learning rate L1 and L2 regularization weights.Continue reading “Hyperparameter tuning”

Classification with Artificial Neural Networks(Keras)

Before start reading this blog you should be clear on the below topics ANN Deep learning frameworks How to deal with Categorical data Cross validation and Parameter tuning In this tutorial we will see how to use Keras for classification problem and we will also learn how to use cross validation and Cross Validation/parameter tuningContinue reading “Classification with Artificial Neural Networks(Keras)”

Deriving Decision Tree using Entropy (ID3 approach)

We are taking below famous data which is widely used data set for explaining Decision tree algorithm. Once we build a decision tree it looks like below. Now we will see how we achieved above decision tree using Entropy and Information gain matrices. First and foremost question is, how do I chose my root nodeContinue reading “Deriving Decision Tree using Entropy (ID3 approach)”

Sampling With/Without Replacement

Sampling is the part of inferential statistics which is use to estimate the population based on the sample data and it is one of the important technique in statistics and Machine learning.In this post we will learn about sampling with replacement and without replacement. Sampling with replacement Let’s take an example we have below listContinue reading “Sampling With/Without Replacement”