How To Train A Neural Network In Python – Part I

Deep learning uses neural networks to build sophisticated models. The basic building blocks of these neural networks are called "neurons". When a neuron is trained to act like a simple classifier, we call it "perceptron". A neural network consists of a lot of perceptrons interconnected with each other. Let's say we have a bunch of … Continue reading How To Train A Neural Network In Python – Part I

Performing Windowed Computations On Streaming Data Using Spark In Python

We deal with real time data all the time. If you look at those analytics dashboards, you can see how they perform computations and tell us what happened in the last 60 mins or may be the last 7 hours. They are dealing with terabytes of data and yet they can process all of that … Continue reading Performing Windowed Computations On Streaming Data Using Spark In Python

Analyzing Real-time Data With Spark Streaming In Python

There is a lot of data being generated in today's digital world, so there is a high demand for real time data analytics. This data usually comes in bits and pieces from many different sources. It can come in various forms like words, images, numbers, and so on. Twitter is a good example of words being … Continue reading Analyzing Real-time Data With Spark Streaming In Python

Understanding Filter, Map, And Reduce In Python

Even though lot of people use Python in an object oriented style, it has several functions that enable functional programming. For those of you who don't know, functional programming is a programming paradigm based on lambda calculus that treats computation as an evaluation of mathematical functions. Some of prominent functional programming languages include Scala, Haskell, … Continue reading Understanding Filter, Map, And Reduce In Python

Installing OpenCV 3 With Python On Mac OS X

OpenCV is the world's most popular computer vision library and it's used extensively by researchers and developers around the world. OpenCV has been around for a while now and they add something new and interesting with every new release. One of the main additions of OpenCV 3 is "opencv_contrib" which contains a lot of cutting … Continue reading Installing OpenCV 3 With Python On Mac OS X