TensorFlow vs PyTorch — Who’s Ahead in 2023?

Is TensorFlow Better Than PyTorch? Since PyTorch made its way into the machine learning sphere in 2016, loyalists from both camps have sung the praises of their framework of choice.Β  Today, curious minds such as yourself are looking through page after page to find out which one is worth your valuable time and effort. Both … Read more

Plotting Vector Fields and Gradients for ANN Gradient Descent

πŸ‘‰ This is a follow-up article to Gradient Descent in Neural Nets – A Simple Guide to ANN Learning – Finxter, where a lightweight introduction to Gradient Descent is given. In this article, you will learn how to produce the graphs in that article, especially the vector fields! Data visualization is an enlightening task in … Read more

Python – Finding the Most Common Element in a Column

Problem Formulation and Solution Overview This article will show you how to find the most common element in a Pandas Column. To make it more interesting, we have the following running scenario: You have been provided with a downloadable CSV file containing crime statistics for the San Diego area, including their respective NCIC Crime Codes. … Read more

Plot Circle in Pyplot

How to Plot a Circle in Python? You can easily plot a circle in Matplotlib’s Pyplot library by calling plt.gca() to “get the current axis”. Then call the axis.add_patch() function and pass a plt.Circle() object into it. For example, the one-liner plt.gca().add_patch(plt.Circle((0.5, 0.5), 0.2, color=’lightblue’)) adds a lightblue circle to the plot at position x=0.5, … Read more

Blockchain Analytics: The Basics

Image source Blockchain. This new technology is changing the way transactions are recorded and verified, and it’s leading us into a new era with enticing promises: smart contracts, shared ledgers, immutable data records, and blockchain analytics. There are so many different ways to use this innovative blockchain analytics. Who wouldn’t want to know all about … Read more

NumPy Datetime: How to Work with Dates and Times in Python?

Dates and times have come a long way since the hourglass was invented

In this article, we’ll be learning about something that is literally everywhere. Whatever corner you turn, whatever street you run down, you can’t get away from it. It is as ubiquitous as the physical space around us. Yes today, we’re talking about… TIME. More specifically, we’re talking about NumPy’s functions that represent dates and times. … 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