Author name: Rishabh

Generative Adversarial Networks (GANs) From Scratch

Generative Adversarial Networks (GANs) are incredibly powerful in the world of machine learning. They excel at creating synthetic data that’s so close to real data, it’s almost uncanny. Today, we’re diving into how these networks work and even trying our hand at building a simple GAN framework using PyTorch. But why the term “Adversarial”? Well, …

Generative Adversarial Networks (GANs) From Scratch Read More »

Adversarial Attacks

In this post, we will be talking about the vulnerabilities that plague machine learning. Yes, in the realm of computer science, no field is void of vulnerabilities and loopholes and as we progress towards a very AI-based future, the security and robustness of machine learning models become an important aspect. What are Adversarial Attacks? The …

Adversarial Attacks Read More »

Gradient Descent

The special ingredient to machine learning. We learned in the last post about Linear Regression. We concluded with a cost function that we needed to minimize. Today we will see how we minimize this cost function. To recap, the cost function was : Here, h𝚯(x) is the linear regression equation that we discussed earlier( y= …

Gradient Descent Read More »

Scroll to Top