Skip to content

Tag: Python

Moirai forecasting model

Since a while Large Language Models have been taking over the modeling scene. Among the classical NLP related ones, those dedicated for time series processing started to emerge. Moirai model is one of those. It is a foundational language model for time series forecasting developed by Salesforce. It is a Masked Encoder-based Universal Time Series […]

Read more

py-test abstract classes

In certain scenarios comes a need to create abstract classes. Those can be usefull as base classes, to provide a layout for different implementions of inheriting concrete versions. Class is called abstract when it contains at least one abstract method. Such a method simply lacks implementation, just provides a declaration. Due to that, abstract classes […]

Read more

Memory leakage while plotting in a loop

Issue Memory leakage while generating python matplotlib plots in a loop on MacOS system. I was using python 3.9 and MacOS Catalina.   I was trying to generate lots of plots for my analysis. Idea was to create them in a loop: render plot save the output iterate further Simple example of the case:

[…]

Read more