Machine Learning

A concise overview of cost function optimizers!

Optimizers are needed to find the optimal solution for the given task. Optimizers associate themselves with cost function and model parameters together by updating the model. i.e. when you want to identify weights that minimize your mean squared error in linear regression, you need to use some function to find parameters such that mean squared […]

A concise overview of cost function optimizers! Read More »

Setting up a GPU based Deep Learning Machine

Using GPU for deep learning has seen a tremendous performance. It has been reported that execution time using GPU is 10x -50x times faster than CPU-based deep learning and It is also a lot cheaper than CPU-based system. You can see this below in the picture. I was curious to check deep learning performance on

Setting up a GPU based Deep Learning Machine Read More »

How to improve performance of Neural Networks

  Neural networks have been the most promising field of research for quite some time. Recently they have picked up more pace. In earlier days of neural networks, it could only implement single hidden layers and still we have seen better results. Deep learning methods are becoming exponentially more important due to their demonstrated success

How to improve performance of Neural Networks Read More »

Feature Learning , Deep Learning and Machine learning

Machine learning is a very successful technology but applying it today often requires spending substantial effort hand-designing features. This is true for applications in vision, audio, and text Any machine learning algorithm performs as good as provided features are. Let’s understand this by using image classification example. When we try to classify an image into

Feature Learning , Deep Learning and Machine learning Read More »

Difference between Usual Machine Learning and Deep Learning Explained!

As wikipedia defines: “Machine learning is a subfield of computer science[1] that evolved from the study of pattern recognition and computational learning theory in artificial intelligence.[1] Machine learning explores the study and construction of algorithms that can learn from and make predictions on data.[2] Such algorithms operate by building a model from example inputs in order to make data-driven predictions or decisions,[3]:2 rather than following strictly static program instructions.” i.e. you collect a

Difference between Usual Machine Learning and Deep Learning Explained! Read More »

Scroll to Top