How embedding models encode semantic meaning
More from garrit.xyz
I just had the pleasure (cough) to connect an MSSQL database to a Laravel application at work. Because the process was super tedious, I wanted to quickly jot this down so I will never have to go through this again. Our setup We're building a Laravel application with DDEV. DDEV essentially moves all development tools into Docker containers and...
The term "AI Slop" is currently on the rise. It describes all the AI generated images and texts we see on the internet. I'd like to propose a term that basically describes the opposite of AI Slop: Mental AI Fog. Instead of consuming too much AI generated content (which also applies), AI Fog describes the inability to produce content without the...
I just rewrote parts of my Positive Hacker News RSS Feed project to use an ML model to filter out any negative news from the Hacker News timeline. This method is far more reliable than the previous method of using a rule-based sentiment analyzer through NLTK. I'm using the model cardiffnlp/twitter-roberta-base-sentiment-latest, which was trained...
The more I'm getting into large language models (LLMs), the more I'm fascinated about what you can do with them. To "digest" my reading list of cool articles and projects regarding LLMs, I assembled the following list. If you're also interested but haven't started your journey into this neverending rabbit hole, these may contain some good...
Just a quick note to my future self on how to test a SMTP connection with nothing but a tiny busybox container. In my case specifically, I tested the connection from inside a Kubernetes cluster. Here's the quickest way to get a temporary pod up and running: kubectl run -n backend -i --tty --rm debug --image=busybox --restart=Never Busybox comes...