Prepare for interviews by understanding the fundamental concepts, practicing coding, and exploring real-world use cases of TensorFlow. These TensorFlow interview questions and...
Here are 20 commonly asked data science interview questions and answers. 1. What is the role of a data scientist in a business...
Machine learning is revolutionizing the automobile sector in various ways. Machine learning is driving innovation and transformation in the automobile industry, paving...
Machine learning is having a transformative impact on the healthcare sector. Machine learning is revolutionizing healthcare by enhancing diagnosis accuracy, personalizing treatments, improving...
NLP (Natural Language Processing) is a very interesting branch of Artificial Intelligence. Natural language is a language which we human use to...
Google Cloud Vision API helps in label detection, face detection, logo detection, landmark detection and text detection (OCR: Optical Character Recognition). In this...
Google Cloud Vision API helps in label detection, face detection, logo detection, landmark detection and text detection. In this article, we will see...
Lets use a pre-trained VGG16 model to predict an image from ImageNet database. We will load an image, convert that image to...
This book contains 205 objective type questions and answers covering various basic concepts of deep learning. It contains 19 chapters. Each chapter...
Lets solve a regression problem using neural networks. We will build a sequential model in Keras to predict house prices based on...
Keras framework provides us a lot of pre-trained general purpose deep learning models which we can fine-tune as per our requirements. We...
We will implement CNN in Keras using MNIST dataset. To know more about CNN, you can visit my this post. We can download the MNIST dataset through...
Keras is a widely used framework to implement neural networks in deep learning. Keras is very easy to use and understand and...
Lets understand how can we create a simple neural network in Keras. We will create a simple sequential model with dense layers (fully...
I have listed down some basic deep learning interview questions with answers. These deep learning interview questions cover many concepts like perceptrons,...
Weight initialization is the most important step while training the neural network. If weights are high, it may lead to exploding gradient. If...
Batch normalization (batchnorm) is a technique to improve performance and accuracy of a neural network. Many times, normalization and standardization terms are...
Transfer learning and fine-tuning terms are very similar in many ways and widely used almost interchangeably. Fine-tuning: Suppose you already have an...
Capsule Neural Networks can be seen as an enhancement of Convolutional Neural Networks. In order to understand capsule neural networks, lets first...
Softmax function can be understood as a generalized version of a sigmoid function or an extension of a sigmoid function. Softmax function is...
Ideally, the neural networks should never underfit and overfit and maintain good generalization capabilities. For this purpose, we use various regularization techniques...
In order to minimize the loss and determine optimal values of weight and bias, we need to tune our neural network hyper-parameters....
Task of a Gradient Descent optimizer is to find out optimal weights for the parameters. But sometimes, it may end up in...