Explore >> Select a destination


You are here

vankessel.io
| | www.hamza.se
0.5 parsecs away

Travel
| | A walkthrough of implementing a neural network from scratch in Python, exploring what makes these seemingly complex systems actually quite straightforward.
| | blog.scottlogic.com
0.5 parsecs away

Travel
| | Recently I've been learning about Neural Networks and how they work. In this blog post I write a simple introduction in to some of the core concepts of a basic layered neural network.
| | www.paepper.com
0.8 parsecs away

Travel
| | [AI summary] This article explains how to train a simple neural network using Numpy in Python without relying on frameworks like TensorFlow or PyTorch, focusing on the implementation of ReLU activation, weight initialization, and gradient descent for optimization.
| | matt.might.net
1.4 parsecs away

Travel
| [AI summary] This text explains how a single perceptron can learn basic Boolean functions like AND, OR, and NOT, but fails to learn the non-linearly separable XOR function. This limitation led to the development of modern artificial neural networks (ANNs). The transition from single perceptrons to ANNs involves three key changes: 1) Adding multiple layers of perceptrons to create Multilayer Perceptron (MLP) networks, enabling modeling of complex non-linear relationships. 2) Introducing non-linear activation functions like sigmoid, tanh, and ReLU to allow networks to learn non-linear functions. 3) Implementing backpropagation and gradient descent algorithms for efficient training of multilayer networks. These changes allow ANNs to overcome the limitations of ...