kedro-org / kedro-plugins

First-party plugins maintained by the Kedro team.
Apache License 2.0
84 stars 76 forks source link

feat: ProphetModelDataset #720

Open galenseilis opened 3 weeks ago

galenseilis commented 3 weeks ago

Description

This PR was created to add Meta's (formerly Facebook's) Prophet model. It is a probabilistic modelling for time series forecasting.

Development notes

The Prophet module provides functions for serializing and deserializing models to/from JSON. Beyond that the behaviour is intended to be the same as the JSONDataset. I have subclassed from JSONDataset and overrode the _load and _save methods to use Prophet's serialization during these methods.

I have tried to emulate the tests for JSONDataset, but with a code duplicate for a trained Prophet model instead of a test file.

Checklist