Monthly Archive September 2019

Visualizing How Convolution Neural Networks “See”

Convolution Neural Networks (CNN) learns image regognition the way human visual system does. It scans images by using filters which recognizes a unique feature. A little deeper layers identify low level features such as curves and edges, while the deeper layers idtentifies high level features such as eyes or windows. We use Keras library to visualize what CNN are learning to look when making a certain classfication.

Read the rest of the article at Mindboard’s Medium channel.

Creating Custom Lambda Layers

In the late 2018 AWS announced two new features for Lambda to make serverless deployment much easier. They are:

· Lambda layers — which is a way to manage code and dependencies across multiple lambda functions.

· Lambda Runtime API — to develop lambda functions on any programming language or a specific language version.

Read the rest of the article at Mindboard’s Medium channel.