The Django syntax error on migrating is very annoying, specially when you don’t find any error when looking for one. This post contains a working solution.
Table of contents
I…
Rye is impressive both as a package manager and as an onboarding tool for Python projects. I have done quite some workshops/sessions and one main pain point is getting Python up and running. Rye in…
Really, oreiller is the french word for a pillow.
I always heard about the PIL fork, Pillow but never used it. When I finally used it, I found it to be tedious sometimes. Like including emoj…
Chat with your own data/text files using chatGPT and LangChain
There are many different approaches to chatting with your own data.
One way is to upload your PDF to the OpenAi chatGPT cloud.
This comes with several limitations such as data being deleted or um…
Understand langChain to Quickly Get Started with Production Codebases
LangChain is a superb library to productionize LLMs. It has few concepts which make it great.
If you want to quickly get started with LangChain as maybe like me you have production in front of you,…
pipx allows you to use python projects on the commandline without using a virtual environment each time.
Here’s how to install it on Ubuntu and Linux Mint
…
Deep learning is one of the most useful and trending topics in the current world scenario, which works on the concepts of neural networks, computer vision, perceptrons, and many other techniques. P…
Bag of Words (BoW) in NLP: A Deep Dive into Text Vectorization
If you are trying to build a spam filter, a sentiment analyzer, or any machine learning model that processes text, you face an immediate problem: Machine Learning algorithms cannot understa…
Bag of Words and TF-IDF are great, but they suffer from a fatal flaw: they have no concept of meaning. To those algorithms, “car” and “automobile” are just as different as “car” an…
We can take linear algebra as a backbone of machine learning, as almost all the machine learning techniques and algorithms somehow use linear algebra to some extent. Some famous machine learning te…
Linear Algebra in Recommendation Systems of Machine Learning
Linear algebra in machine learning is one of the essential topics to learn and have an idea about, as it is applicable and plays a critical role in many machine learning applications. Recommendatio…