shubham4443.hashnode.devMy Experience in LFX Mentorship Spring '22 ProgramI'm a student pursuing under-graduate in Electronics Engineering from Veermata Jijabai Technological Institute (VJTI), Mumbai, India. I recently completed my LFX Mentorship Program where I was working on an open-source project - Kyverno. In this arti...Jun 4, 2022·4 min read
shubham4443.hashnode.devServices in KubernetesNeed for Services Each pod gets its own IP address. However, pods in Kubernetes are ephemeral; meaning they are created and destroyed very quickly to match the state of the cluster. When a pod dies, a new pod is created in its place. Every time a new...Feb 8, 2022·3 min read
shubham4443.hashnode.devSupport Vector MachineWhat is SVM? Support Vector Machine is a supervised machine learning algorithm. It is mostly used for classification problems. The objective of SVM algorithm is to find a hyperplane (more about it later in the article) that will distinctly classify t...Jan 25, 2022·4 min read
shubham4443.hashnode.devRandom ForestProblem with Decision Tree Decision Trees are highly sensitive to training dataset. A small change in the training dataset might completely change the decision tree. So, a decision tree will work extremely well on training dataset but perform poorly ...Dec 13, 2021·2 min read
shubham4443.hashnode.devDecision TreeIntroduction Decision Tree is a binary tree like data structure which recursively splits the dataset until we are left with pure leaf nodes. The internal nodes represent the conditions and the leaf nodes represent the decision based on the conditions...Dec 12, 2021·3 min read