Month: February 2024

Types of Processing Units for LLM and Machine Learning Apps

Every software requires a processing unit in order for it to run, however the kind of processing unit and circuitry among other things has a great influence on the performance and speed of the software. Large Language Models are also a form of software and they require the right infrastructure for better speed of inference. …

Types of Processing Units for LLM and Machine Learning Apps Read More »

Pydantic & Dataclasses – How to Allow Extra Kwargs

Dataclasses act as code generators when working with Objects and Classes in python. It allows us to easily benefit from the dunder methods that are required when creating a class such as __init__, `__eq__`, etc . When working with external data sources, however, there may arise situations where additional parameters beyond those explicitly declared in …

Pydantic & Dataclasses – How to Allow Extra Kwargs Read More »