Machine Meta Learning

Large Language Models (LLMs) are primarily rote learners. They can answer straightforward calculations like (1 + 1 = 2) because they have seen enough examples in their training data to predict the token 2 when given the sequence of tokens 1, +, 1. However, this approach breaks down when faced with more complex problems, such as:

... continue reading ...

RAG in 45 seconds

If you want to know about what is RAG and how it’s used, read the following pseudo(ish) code

... continue reading ...

Learn Python in One Hour (?)

I took it as a challenge to teach someone who has no idea of python to get started in 1 hour

... continue reading ...

Crash Course on Python Parallel Processing

You are in a company X where you want to run crash testing. every test is time consuming and you have only one python terminal at disposal.
let’s setup the base code and run sequentially

... continue reading ...