VSVasu Soniintreavwritesml.hashnode.dev·Apr 20, 2025 · 2 min readGenAI Comics, Coffee, and Podcast (1/3)I participated in the Kaggle: 5-Day Gen AI Intensive Course with Google. It was fun juggling between work and these fun segments. I wanted to create something cool, but as time has always accompanied everyone, we can only make as much as we have. So,...00
VSVasu Soniintreavwritesml.hashnode.dev·Apr 20, 2025 · 3 min readPytorch- Autograd (2/N)Q1: What is Autograd in PyTorch? Autograd is PyTorch’s automatic differentiation engine. It automatically calculates gradients of tensors during the backward pass. Additionally, when you set requires_grad=True for a tensor, PyTorch tracks all operati...00
VSVasu Soniintreavwritesml.hashnode.dev·Mar 23, 2025 · 3 min readPyTorch Autograd — From Tensors to OptimizationAutograph: PyTorch's autograd engine is the magic behind automatic differentiation. As machine learning engineers or deep learning practitioners, we often define a loss function and expect our framework to figure out how to update weights. PyTorch ha...00
VSVasu Soniintreavwritesml.hashnode.dev·Mar 23, 2025 · 2 min readPytorch Lessons - Basics importsI will start the Pytorch Series with interview-like formatted questions for us. Here, we will see questions on tutorials. Tutorial link Usually, common libraries used are: import torch import torchvision import torch.nn as nn import numpy as np impo...00