About 796 results
Open links in new tab
  1. Python AI: How to Build a Neural Network & Make Predictions

    In this step-by-step tutorial, you'll build a neural network from scratch as an introduction to the world of artificial intelligence (AI) in Python. You'll learn how to train your neural network and make accurate …

  2. Implementation of neural network from scratch using NumPy

    Apr 11, 2025 · Neural networks are a core component of deep learning models, and implementing them from scratch is a great way to understand their inner workings. we will demonstrate how to …

  3. Build Your First Neural Network in Python Using Keras

    Oct 30, 2025 · Learn step-by-step how to build your first neural network in Python using Keras. Includes beginner-friendly explanations and full working practical examples.

  4. Develop Your First Neural Network with PyTorch, Step by Step

    Apr 8, 2023 · In this post, you discovered how to create your first neural network model using PyTorch. Specifically, you learned the key steps in using PyTorch to create a neural network or deep learning …

  5. Neural Networks in Python – A Complete Reference for Beginners

    May 31, 2021 · In this tutorial, you will learn how to make a neural network that can recognize digits in an image with a simple implementation of it using Tensorflow.

  6. How to build a Neural Network from scratch - freeCodeCamp.org

    Oct 11, 2019 · In this article we will get into some of the details of building a neural network. I am going to use Python to write code for the network. I will also use Python's numpy library to perform …

  7. Build the Neural Network - PyTorch

    In the following sections, we’ll build a neural network to classify images in the FashionMNIST dataset. We want to be able to train our model on an accelerator such as CUDA, MPS, MTIA, or XPU. If the …

  8. Python AI: How to Build a Neural Network and Make Predictions

    Jun 20, 2023 · Learn how to build a neural network in Python for AI applications. This comprehensive guide covers the step-by-step process, from importing libraries to making accurate predictions.

  9. How to Build a Neural Network with Python and NumPy | DIY Guide

    Mar 4, 2025 · Learn how to build a neural network from scratch using Python and NumPy. Explore the fundamentals of neural networks and implement your own.

  10. Building a Neural Network from Scratch in Python

    Jan 20, 2025 · Building a neural network from scratch is the best way to truly understand how they work. We’ll implement a complete feedforward network using only NumPy, including forward propagation, …