Posts Tagged with: python (5)
Building a Telegram Bot for Easy Media Uploads to My Blog
In my 100 Posts Later reflection and my article on SveltiaCMS escaping CMS hell, I talked about how I shifted away from a code editor (like VS Code) for managing...
Complete Machine Learning package- learn by doing
Are you fascinated by machine learning but have no idea where to start? Do you find yourself jumping between YouTube tutorials, blog posts, and dense textbooks, only to end up...
Understanding Gradients with loss.backward() in PyTorch
In this post, let us take a closer look at how gradients are calculated in PyTorch, particularly focusing on the interaction between the loss.backward() function and a variable’s .grad attribute....
Automating Script Execution on a Raspberry Pi
There are several ways to automate a Raspberry Pi to run a program automatically without needing to start it manually from the terminal. Whether you’re using Python, Node.js, or another...
Mastering Python for Algorithms and Efficiency
Having code that works or implementing a solution is not good enough. Some problems require optimizing for memory and time and also meeting given constraints. Efficiency matters, and the scalability...