Why Naive Bayes Algorithm is NOT affected by Feature Scaling

Naive Bayes is a probabilistic algorithm that makes class predictions based on Bayes' theorem, which states that the probability of a class given a set of features is proportional to the product of the probabilities of each feature given the class. The algorithm assumes independence between the features, so scaling the features should not affect … Continue reading Why Naive Bayes Algorithm is NOT affected by Feature Scaling

Exploration vs Exploitation in Reinforcement Learning

In Reinforcement Learning, exploration vs exploitation is a fundamental trade-off that agents must navigate to learn the optimal behavior in an environment. Exploration refers to the process of trying out new actions or visiting new states in order to gain more information about the environment and improve the agent's understanding of the rewards and transition … Continue reading Exploration vs Exploitation in Reinforcement Learning

How to check current version of TensorFlow?

To check current version of TensorFlow... use the below commands import tensorflow as tf tf.__version__ check current version of TensorFlow Cheers!! Logistic Regression Machine Learning Algorithm from Scratch in Python https://youtu.be/2ztuQKtW7So Logistic Regression Machine Learning Algorithm from Scratch in Python Gradient Descent Machine Learning Algorithm from Scratch in Python https://youtu.be/gurGhGPg-6s Gradient Descent Machine Learning Algorithm … Continue reading How to check current version of TensorFlow?

Top 10 Object Detection Algorithms in Machine Learning

Top 10 Object Detection Algorithms in Machine Learning is a short video to discuss ten types of Object Detection Algorithms in deep learning. The discussed algorithms are Region-based Convolutional Neural Networks(R-CNN), Fast R-CNN, Faster R-CNN, Mask R-CNN, Region-based Fully Convolutional Network (R-FCN), Histogram of Oriented Gradients (HOG), Spatial Pyramid Pooling (SPP-net), Single Shot Detector (SSD), … Continue reading Top 10 Object Detection Algorithms in Machine Learning

Decision Tree Machine Learning Algorithm from Scratch in Python

Decision Tree Machine Learning Algorithm From Scratch in Python is a short video course to discuss an overview of the Decision Tree Machine Learning Algorithm. In this video different types of concepts related to Decision Tree Algorithms such as Entropy and Information Gain are discussed. Finally, the algorithm is implemented, step by step, in Python … Continue reading Decision Tree Machine Learning Algorithm from Scratch in Python