AI Project: Fine-Tuning a Hugging Face Model (Part 1: The Data)
You’ve used Hugging Face pipelines to run pre-trained models. If you want to get the most from these models, learning about Hugging Face Fine-Tuning is…
Discover the field of Data Science and its significant impact on decision making. Learn techniques to harness its power for success.

You’ve used Hugging Face pipelines to run pre-trained models. If you want to get the most from these models, learning about Hugging Face Fine-Tuning is…

Your data is often in a “wide” format, like a spreadsheet, but analysis tools (like plotting libraries) prefer “long” format. One useful function for this…

This is the cutting-edge of AI, far beyond a simple pipeline. An Agent is an LLM (like ChatGPT) that has been given tools and can…

This is one of the most powerful and “magical” tasks in modern AI. In particular, Hugging Face Zero-Shot is a technique that demonstrates impressive versatility…

One of the most common data tasks is creating a new column based on a condition. In this tutorial, we’ll focus on using Polars when…

We’ve taught our AI to classify an image (e.g., “This is a cat”). Now let’s teach it to find the cat. Object Detection is a…

Just loading dates isn’t enough. For real analysis, you need to “engineer features” from them, like “What day of the week do most sales happen?”…

Real-world data from APIs often comes as nested JSON. Pandas struggles with this, but Polars has two powerful expressions built for it: explode and unnest….

You’ve built amazing AI models with Hugging Face, but they’re stuck in your script. Want to know how to deploy Hugging Face API so other…

Text data is almost always messy. One of the most efficient ways to tackle this is with Polars string manipulation. In Pandas, you use .str…