Settings#

Note

At the package init by default etna checks availability of all packages and warns you if some of them are not available.

All available installation options:

pip install etna
pip install etna[prophet]
pip install etna[torch]
pip install etna[wandb]
pip install etna[auto]
pip install etna[classification]
pip install etna[statsforecast]
pip install etna[all]

Note

You also may want to make sure, that your etna project always has necessary dependencies installed. In order to do that, you need to create .etna file in the project directory. This way you will get error if any of the dependencies are not present.

Example .etna file:

[etna]
torch_required = false
prophet_required = true
wandb_required = false

API details#

Settings([torch_required, prophet_required, ...])

etna settings.

There is global object SETTINGS that can be imported.