Artificial Neural Networks in Industry

Bhavesh Kakrotra
4 min readApr 2, 2021

The idea of Machine Learning had been around much before the world saw fifth generation of computers, and became public when Alan Turing made a game called the imitation game which is based on the original in which a man and a woman go into separate rooms and others try guess who is who by writing questions and reading the answers they sent back and both try to convince the guests that they are the other.

Turing described his new version of the game as follows:

We now ask the question, “What will happen when a machine takes the part of A in this game?” Will the interrogator decide wrongly as often when the game is played like this as he does when the game is played between a man and a woman? These questions replace our original, “Can machines think?”

Although Machine Learning and Statistics have different purpose, traditional Machine Learning algorithms use statistics as their base. One of the first libraries you are introduced to in the world of Data Science using python — scikit-learn, is 100% based on nothing but pure statistics, and there is one thing about statistics: it can only be performed on a limited data. In the world of data lakes and big data, traditional Machine Learning is not used since data keeps coming and it works only on historical data.

Here comes the role of Deep Learning.

Deep Learning is a Machine Learning algorithm that uses networks known as Artificial Neural Networks (ANN) that can solve any kind of requirement. In a statistical approach, accuracy becomes constant after a while but with deep learning accuracy keeps getting better with increase in data.

What are Artificial Neural Networks?

We as humans learn from experience. For example, human beings collect data from their 5 senses i.e. vision, smell, hearing, taste and touch. Suppose we have a cup of tea.

Photo by Drew Jemmett / Unsplash

From our senses we know that it is tea, as all of them have some information about tea that they have gained from experience by perceptions made by our senses.

Each one of the senses give some weightage like how much they believe it that it is a tea. This weight is initialized by a weight initializer. A neuron will take this weightage from all the senses and upon activation will predict what the object is.

A model consists of three layers: Input layer, Hidden layer and Output layer. The input layer has independent variables, the hidden layer has neurons and the output layer has the independent variables. If the input data is our 5 senses, then the output layer would be the cup of tea.

Increase in hidden layers will cause increase in accuracy but also increase in the use of resources which will of course — increase space and time complexity.

Industry Use Cases

The list of applications of neural networks is increasing as you read this. Few of them are face recognition, effect on insurance provision, encouraging repeat customs, financial services and much more. Lets dig into one of those: optimizing store layout.

H&M

The ability of neural networks to analyze and monitor stock levels makes it easier for companies to tell which products gets more sales. Based on this, the ones with lesser sales can be put on offer or placed at places most people are likely to check. Products usually purchased together can be put together to save customers’ hassle and also to encourage newer customers to buy them together. This helps to prevent a backlog building in the warehouse.

According to Forbes, H&M are using ANNs to do such things like warehouse management and store layout.

Abandoning the one size fits all approach, H&M are tailoring the product mix in their stores. For example, one of their stores in the residential Östermalm area of Stockholm originally sold basic products for everyone. After analyzing they identified that the majority of the store’s clients were women. Consequently, higher-priced items, as well as fashion items, sold far better than children’s or men’s products. This information helped them change the range of products in many of their stores. As well as reducing the menswear range, they brought in crockery ranges, a flower stall and a coffee shop.

The Wall Street Journal reports

By going for a more high-end look the store has improved its appeal and sales.

According to H&M this optimization has helped increase profit margins significantly.

Feel free to contact on my LinkedIn.

--

--