Author: Deep Learner
Python Basics: Dictionaries
In plain English, a dictionary is a book containing the definitions of words. Each entry in a dictionary has two parts: the word being defined, and its definition. Python dictionaries, like lists and tuples, store a collection of objects. However, instead of storing objects in a sequence, dictionaries hold information in pairs of data called key-value pairs. That is, each object in a dictionary has two parts: a key and a value. Each key is assigned a single value, which […]
Read moreMy Favorite Way to Smooth Noisy Data With Python
Nearly all real-world data is noisy. What do I mean by noisy? Consider the following simple example: I’ve got a mass attached to a spring — I pull on the mass (stretching the spring) and then let go. From intuition, we know that the mass will oscillate up and down until it eventually comes to rest because of friction/damping in the system. If I were to plot the height of the mass over time I would get a plot like […]
Read moreFlappy Birds clone with ChatGPT and Python
Inspired by Andy Touch’s tweet, I thought I’d see if ChatGPT could create a Flappy Bird clone. Let’s go! “in
Read moreLevel up your SRE game — Best of this week — 4th Dec 2022
“Anyone who stops learning is old, whether at twenty or eighty. Anyone who keeps learning stays young” — Henry Ford I compile Site Reliablility Engineering/Devops related articles every week and help you keep up your learning game.
Read moreFine-tuning GPT-3 Using Python for Keywords Classification
Have you been dreaming in high school when facing a huge study workload that one day, some sort of robots from the future can cover your programming homework, write articles, and answer your questions? I bet this idea has surely jumped into everybody’s mind at least once in our childhood. Well, guess what? With the help of advanced language models today, it’s not only a dream anymore!
Read moreAll Kinds of Randoms in Python
An all-you-need list of examples for generating random samples in python
Read moreText Mining, Analytics, and NLP
-Jayant Meshram, Siddhi Mundada, Akash Nachan, Srushti Naik Intro It is said that information is the oil of the 21st century, and
Read more