Concept

Neural Network

Breaking this down into to components:

  • What are Neurons?

  • How are they connected?

  • At first, we can think view a neural network as how our brains work like neurons signaling one another (Also the inspiration for its name). In a sense these models allow computer programs to recognize patterns and solve common problems.

  • Neural Networks are comprised of node layers. It contains the input layer, one (or more) hidden layers, and an output layer.

  • Nodes (neurons) are connected via arrows and each has an associated weight and threshold. If the node surpasses the threshold set, then that neuron is activated and the data is sent on the next layer. This process repeats until it goes to the output layer.

0

1

Updated 2021-07-31

Tags

Python Programming Language

Data Science

Related