Category Archives - Dev

Language models for your own data

Language models such as GPT, chatGPT, LLaMa, Bard and Alpaca are the focus of everyone’s attention and are incredibly fascinating – they provide surprisingly accurate answers to all kinds of questions, complete texts, formulate emails or summarise presentations and documents. Wouldn’t it be nice to use them on your own data?

MockServer in less than 2 minutes

For the development of applications, it can be very useful to provide an API via a local web server delivering predefined data. Especially for testing and rapid prototyping, it is highly recommended to use a mocked API instead of requesting a production system. Today I will show you how to create a local mock server…

Parallelisation in Python with Joblib

In all computationally intensive tasks, sooner or later, the topic of parallelisation comes into focus. Python offers a variety of ways to achieve this – all with strengths but also weaknesses. In the following, I want to present some approaches with a focus on one framework: joblib. It allows the parallelisation and reusability of intermediate…

Visualisation with Python

Do you want to get quick insights from a large dataset? Just use Python – it has all the tools you need to load, transform and visualise complex data with just a few lines of code. This post will show you how you can quickly create a professional visualisation from your data using Pandas and…