Tagged articles
21 articles
Page 1 of 1
Radish, Keep Going!
Radish, Keep Going!
Nov 4, 2025 · Artificial Intelligence

What You Need to Know: Backpropagation, FreeBSD, AI MoE, and More Tech Insights

This roundup covers essential insights on backpropagation fundamentals, FreeBSD self‑hosting benefits, an open‑source 30B MoE AI model, misuse of cybercrime laws, historic moving sidewalks, party‑planning hacks, deceptive signal‑strength tricks, a 1000‑hp micro motor, Nextcloud performance fixes, and Google Cloud account suspensions, offering a blend of technical depth and practical advice.

AIBackpropagationDeep Learning
0 likes · 11 min read
What You Need to Know: Backpropagation, FreeBSD, AI MoE, and More Tech Insights
IT Services Circle
IT Services Circle
Jul 6, 2025 · Artificial Intelligence

Why Transformers Train Like Any Neural Network: Backpropagation Explained

This article demystifies how Transformers are trained by showing that all their linear layers have learnable weights and biases, and that the attention mechanism—including softmax and dot‑product operations—is fully differentiable and updated via standard back‑propagation.

BackpropagationDeep LearningPyTorch
0 likes · 7 min read
Why Transformers Train Like Any Neural Network: Backpropagation Explained
Cognitive Technology Team
Cognitive Technology Team
Apr 12, 2025 · Artificial Intelligence

Analyzing a Trained Neural Network: Visualizing Hidden Layers and Understanding Its Limitations

This article walks through an interactive exploration of a simple two‑hidden‑layer neural network, showing how real‑time visualizations reveal its learned representations, accuracy limits, and why constrained training leads to over‑confident yet unintelligent predictions before introducing backpropagation.

BackpropagationDeep LearningNeural Networks
0 likes · 10 min read
Analyzing a Trained Neural Network: Visualizing Hidden Layers and Understanding Its Limitations
JavaEdge
JavaEdge
Feb 23, 2025 · Artificial Intelligence

How Java Developers Can Build Neural Networks with PyTorch: A Step‑by‑Step Guide

This tutorial walks Java developers through the complete workflow of building, training, and evaluating a neural network in PyTorch, covering network definition, data iteration, forward and backward passes, loss calculation, and parameter updates with detailed code examples and Java‑centric analogies.

BackpropagationDeep LearningJava
0 likes · 12 min read
How Java Developers Can Build Neural Networks with PyTorch: A Step‑by‑Step Guide
AI Cyberspace
AI Cyberspace
Jan 28, 2025 · Artificial Intelligence

From Biological Neurons to Deep Learning: How MP Models Evolve

This article explains the structure of biological neurons, introduces the McCulloch‑Pitts (MP) mathematical model, shows how manual weight adjustments work, and walks through the development from single‑layer perceptrons to two‑layer networks and modern deep learning techniques, covering activation functions, training algorithms, and practical examples.

BackpropagationDeep LearningMP model
0 likes · 30 min read
From Biological Neurons to Deep Learning: How MP Models Evolve
Ops Development & AI Practice
Ops Development & AI Practice
Jul 6, 2024 · Artificial Intelligence

How Backpropagation Powers Modern Deep Learning: A Deep Dive

This article explains the backpropagation algorithm—its origins, mathematical basis, step‑by‑step workflow, importance for efficient neural network training, and widespread applications in image recognition, natural language processing, and recommendation systems.

BackpropagationDeep LearningNeural Networks
0 likes · 6 min read
How Backpropagation Powers Modern Deep Learning: A Deep Dive
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
May 5, 2024 · Artificial Intelligence

Comprehensive Guide to Neural Network Algorithms: Definitions, Structure, Implementation, and Training

This article provides an in‑depth tutorial on neural network algorithms, covering their biological inspiration, significance, advantages and drawbacks, detailed architecture, data preparation, one‑hot encoding, weight initialization, forward and backward propagation, cost functions, regularization, gradient checking, and complete Python code examples.

AIBackpropagationNeural Networks
0 likes · 37 min read
Comprehensive Guide to Neural Network Algorithms: Definitions, Structure, Implementation, and Training
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Jan 10, 2024 · Artificial Intelligence

Understanding Backpropagation: From Simple to Advanced Neural Network Implementations in Python

This article explains the back‑propagation algorithm in neural networks, starting with a simple single‑neuron example using ReLU, Sigmoid and MSE, then extending to multi‑layer matrix‑based networks, providing detailed Python code, gradient calculations, and comparisons with TensorFlow implementations.

BackpropagationPythongradient descent
0 likes · 21 min read
Understanding Backpropagation: From Simple to Advanced Neural Network Implementations in Python
Model Perspective
Model Perspective
Aug 30, 2023 · Artificial Intelligence

How Gradient Descent Trains Neural Networks: A Blind Hiker’s Journey

This article uses a blindfolded mountain‑climbing analogy to explain how gradient descent trains neural networks, covering cost functions, learning rates, iterative updates, and provides a Python implementation for a simple three‑layer network example.

AIBackpropagationNeural Network
0 likes · 10 min read
How Gradient Descent Trains Neural Networks: A Blind Hiker’s Journey
21CTO
21CTO
May 9, 2023 · Artificial Intelligence

Geoffrey Hinton Warns: Why AI Could Outpace Humanity and What It Means

In a candid MIT Technology Review interview, AI pioneer Geoffrey Hinton discusses his departure from Google, the rapid progress of large language models like GPT‑4, the dangers of AI self‑motivation, and why halting AI development is unrealistic yet urgently needed.

AI SafetyAI riskBackpropagation
0 likes · 28 min read
Geoffrey Hinton Warns: Why AI Could Outpace Humanity and What It Means
Code DAO
Code DAO
May 16, 2022 · Artificial Intelligence

How to Build a Simple Neural Network from Scratch with NumPy

This article walks through implementing a basic multi‑layer neural network using only NumPy, covering terminology, network architecture, forward and backward propagation, activation functions, loss calculation, parameter updates with SGD, and compares the custom model with a Keras implementation.

BackpropagationNeural NetworkNumPy
0 likes · 17 min read
How to Build a Simple Neural Network from Scratch with NumPy
Python Programming Learning Circle
Python Programming Learning Circle
Jul 23, 2021 · Artificial Intelligence

Understanding PyTorch's Backward Propagation Engine (BP Engine)

This article explains how PyTorch's BP Engine dynamically builds the computation graph for back‑propagation, detailing its C++ class structure, thread management, task queues, and key functions such as start_threads, compute_dependencies, execute, and evaluate_function, with illustrative code examples.

BackpropagationCEngine
0 likes · 17 min read
Understanding PyTorch's Backward Propagation Engine (BP Engine)
DataFunTalk
DataFunTalk
Oct 20, 2020 · Artificial Intelligence

From Biological Neurons to Artificial Neural Networks: Perceptrons, Multilayer Perceptrons, and Backpropagation

This article traces the evolution of artificial neural networks from their biological inspiration, explains the McCulloch‑Pitts neuron model, details perceptron architecture and learning rule with a Scikit‑Learn example, and introduces multilayer perceptrons and the back‑propagation algorithm together with common activation functions.

AIBackpropagationDeep Learning
0 likes · 19 min read
From Biological Neurons to Artificial Neural Networks: Perceptrons, Multilayer Perceptrons, and Backpropagation
Python Programming Learning Circle
Python Programming Learning Circle
Apr 26, 2020 · Artificial Intelligence

Understanding PyTorch Autograd: Tensors, Gradients, and Backpropagation

This article explains PyTorch's autograd system, covering tensor creation, the requires_grad flag, detaching tensors, disabling gradient tracking with no_grad, the Function class and computational graph, and demonstrates forward and backward passes with code examples illustrating gradient computation and Jacobian‑vector products.

AutogradBackpropagationPyTorch
0 likes · 6 min read
Understanding PyTorch Autograd: Tensors, Gradients, and Backpropagation
360 Tech Engineering
360 Tech Engineering
Sep 16, 2019 · Artificial Intelligence

Backpropagation Algorithm for Fully Connected Neural Networks with Python Implementation

This article explains the backpropagation training algorithm for fully connected artificial neural networks, detailing its gradient‑descent basis, mathematical derivation, matrix formulation, and provides a complete Python implementation with mini‑batch stochastic gradient descent, momentum, learning‑rate decay, and experimental results.

BackpropagationMini-BatchNeural Network
0 likes · 14 min read
Backpropagation Algorithm for Fully Connected Neural Networks with Python Implementation
Tencent Cloud Developer
Tencent Cloud Developer
Nov 9, 2018 · Artificial Intelligence

Demystifying Neural Networks: A Mathematical Approach

The article explains how basic mathematical principles—starting with simple predictors and linear classifiers, then extending to multi‑classifier systems, activation functions, and weight adjustments—underpin neural network architecture, illustrating each step with concrete examples to show how mathematics drives AI model training and performance.

BackpropagationNeural NetworksXOR problem
0 likes · 15 min read
Demystifying Neural Networks: A Mathematical Approach
Tencent Cloud Developer
Tencent Cloud Developer
Oct 15, 2018 · Artificial Intelligence

Neural Network Fundamentals: Building Your Own Neural Network from Scratch in Python

This tutorial explains neural network fundamentals by defining layers, weights, biases, and sigmoid activation, then walks through building a Python class that implements forward propagation, a sum‑of‑squared‑error loss, and backpropagation using the chain rule and gradient descent to train a simple two‑layer network.

BackpropagationNeural NetworkPython
0 likes · 8 min read
Neural Network Fundamentals: Building Your Own Neural Network from Scratch in Python
Bitu Technology
Bitu Technology
Jul 19, 2018 · Artificial Intelligence

Introduction to Deep Learning: Concepts, Examples, and Learning Resources

This article provides a comprehensive overview of deep learning, covering its definition, fundamental machine‑learning components, illustrative examples such as hot‑dog classification and house‑price prediction, the mathematics of cost functions and gradient descent, back‑propagation via the chain rule, and practical resources and code snippets using Torch.

BackpropagationCode ExamplesNeural Networks
0 likes · 11 min read
Introduction to Deep Learning: Concepts, Examples, and Learning Resources
dbaplus Community
dbaplus Community
Oct 12, 2016 · Artificial Intelligence

Mastering Convolutional Neural Networks: Theory, Training, and Implementation

This article provides a comprehensive guide to convolutional neural networks, covering their advantages over fully‑connected nets, architectural patterns, detailed forward and backward calculations, ReLU activation, pooling strategies, Python implementation with NumPy, gradient checking, and a practical MNIST application.

BackpropagationDeep LearningNumPy
0 likes · 22 min read
Mastering Convolutional Neural Networks: Theory, Training, and Implementation
Ctrip Technology
Ctrip Technology
Sep 10, 2016 · Artificial Intelligence

Deep Learning Anti‑Scam Guide: An Informal Introduction to Neural Networks, Training, and Practical Applications

This article provides a light‑hearted yet thorough overview of deep learning, covering neural network fundamentals, layer construction, back‑propagation, ResNet shortcuts, encoder‑decoder structures, PU‑learning for unlabeled data, GPU acceleration, and practical advice on data size, frameworks, and deployment in financial scenarios.

BackpropagationBig DataGPU
0 likes · 27 min read
Deep Learning Anti‑Scam Guide: An Informal Introduction to Neural Networks, Training, and Practical Applications