Ninad

Ninad

A Python and PHP developer turned writer out of passion. Over the last 6+ years, he has written for brands including DigitalOcean, DreamHost, Hostinger, and many others. When not working, you'll find him tinkering with open-source projects, vibe coding, or on a mountain trail, completely disconnected from tech.
Initializing Model Weights In PyTorch

How to Initialize Model Weights in Pytorch

In the world of deep learning, the process of initializing model weights plays a crucial role in determining the success of a neural network’s training. PyTorch, a popular open-source deep learning library, offers various techniques for weight initialization, which can…

Reversing Arrays In Python

Reverse an Array in Python – 10 Examples

Reversing an array is one of the most fundamental operations in Python, yet Python does not have a single array type — it has lists, the array module, and NumPy. Each behaves differently when reversed. This guide covers every method…