Recommended Reading
I like to write blog posts related to Python and data science. Take a look at some of them below, or check out the full list here.
-
Computer Vision With OpenCV: Building a Car-Counting System
In this post I’m sharing a project where I built a car-counting system using computer vision with OpenCV in Python.
-
How to Use Stable Diffusion to Generate Images
I show how to use stable diffusion’s text-to-image script to generate AI images using a text prompt. Learn about basic prompt formation.
-
Implementing Backpropagation in Python: Building a Neural Network from Scratch
In today’s post, I will implement a matrix-based backpropagation algorithm with gradient descent in Python. For this purpose, we’ll only use the Numpy library to explain a bit of the…