OpenAI vs TensorFlow

OpenAI and TensorFlow have become two of the most prominent names in the field of artificial intelligence and deep learning. While both aim to drive innovation in AI, they offer different approaches and tools for developers and researchers. πŸ’‘ OpenAI is an AI research organization focused on advancing human-level artificial intelligence, while TensorFlow is a … Read more

Python ModuleNotFoundError: No Module Named ‘torch’

Quick Fix: Python raises the ImportError: No module named ‘torch’ when it cannot find the library torch. The most frequent source of this error is that you haven’t installed torch explicitly with pip install torch. Alternatively, you may have different Python versions on your computer, and torch is not installed for the particular version you’re … Read more

Using PyTorch to Build a Working Neural Network

In this article, we will use PyTorch to build a working neural network. Specifically, this network will be trained to recognize handwritten numerical digits using the famous MNIST dataset. The code in this article borrows heavily from the PyTorch tutorial “Learn the Basics”. We do this for several reasons. Knowledge Background This article assumes the … Read more

The Magic of Neural Networks: History and Concepts

Artificial neural networks have become a powerful tool providing many benefits in our modern world. They are used to filter out spam, perform voice recognition, play games, and drive cars, among many other things. As remarkable as these tools are, they are readily within the grasp of almost anyone. If you have technical interest and … Read more

How to Install PyTorch on PyCharm?

PyTorch is a machine learning framework that facilitates development of production-ready machine learning apps. Problem Formulation: Given a PyCharm project. How to install the PyTorch library in your project within a virtual environment or globally? Here’s a solution that always works: Here’s the installation process as a short animated video—it works analogously for PyTorch, just … Read more