05 Oct 2024
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 ...
05 Oct 2024
If you want to know about what is RAG and how it’s used, read the following pseudo(ish) code
... continue reading ...
08 Jul 2024
I took it as a challenge to teach someone who has no idea of python to get started in 1 hour
... continue reading ...
22 May 2024
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 ...