Top 100 Machine Learning Interview Questions and Answers

Top 100 Machine Learning Interview Questions and Answers

In this post, we will discuss Top 100 Machine Learning Interview Questions and Answers.

Read More

Using torchvision transforms for data augmentation

Transforms are common image transformations. torchvision transforms are used to augment the data with scaling, rotations, mirroring, cropping etc. Transforms are common image transformations.  Let us create some possible transforms like RandomRotation , Resize, RandomResizedCrop etc. Below is the code to use transforms for the training, validation, and testing sets transforms.Compose([transforms.Resize(224),transforms.CenterCrop(64),transforms.ToTensor()]) Most neural networks expect the…

Read More

Difference between Logistic Regression and Support Vector Machine SVM

Both Logistic Regression and Support Vector Machine or SVM can be used for classification however there is some fundamental difference between them. Lets understand those differences when we are using Support Vector Machine as a classifier. Logistic Regression gives probabilities as output that can be interpreted as confidence in the classification decision however Support Vector…

Read More

Logistic Regression Machine Learning Algorithm from Scratch in Python

Logistic Regression Machine Learning Algorithm From Scratch in Python is a short video course to discuss an overview of the Logistic Regression Machine Learning Algorithm. In this video different types of concepts related to Logistic Regression Algorithms such as Sigmoid and Optimization are discussed. Finally, the algorithm is implemented, step by step, in Python Programming…

Read More