OmegaConf plugin for Flytekit
Project description
Flytekit OmegaConf Plugin
Flytekit python natively supports serialization of many data types for exchanging information between tasks.
The Flytekit OmegaConf Plugin extends these by the DictConfig
type from the
OmegaConf package as well as related types
that are being used by the hydra package for configuration management.
Task example
from dataclasses import dataclass
import flytekitplugins.omegaconf # noqa F401
from flytekit import task, workflow
from omegaconf import DictConfig
@dataclass
class MySimpleConf:
_target_: str = "lightning_module.MyEncoderModule"
learning_rate: float = 0.0001
@task
def my_task(cfg: DictConfig) -> None:
print(f"Doing things with {cfg.learning_rate=}")
@workflow
def pipeline(cfg: DictConfig) -> None:
my_task(cfg=cfg)
if __name__ == "__main__":
from omegaconf import OmegaConf
cfg = OmegaConf.structured(MySimpleConf)
pipeline(cfg=cfg)
Transformer configuration
The transformer can be set to one of three modes:
Dataclass
- This mode should be used with a StructuredConfig and will reconstruct the config from the matching dataclass
during deserialisation in order to make typing information from the dataclass and continued validation thereof available.
This requires the dataclass definition to be available via python import in the Flyte execution environment in which
objects are (de-)serialised.
DictConfig
- This mode will deserialize the config into a DictConfig object. In particular, dataclasses are translated
into DictConfig objects and only primitive types are being checked. The definition of underlying dataclasses for
structured configs is only required during the initial serialization for this mode.
Auto
- This mode will try to deserialize according to the Dataclass mode and fall back to the DictConfig mode if the
dataclass definition is not available. This is the default mode.
You can set the transformer mode globally or for the current context only the following ways:
from flytekitplugins.omegaconf import set_transformer_mode, set_local_transformer_mode, OmegaConfTransformerMode
# Set the global transformer mode using the new function
set_transformer_mode(OmegaConfTransformerMode.DictConfig)
# You can also the mode for the current context only
with set_local_transformer_mode(OmegaConfTransformerMode.Dataclass):
# This will use the Dataclass mode
pass
Since the DictConfig is flattened and keys transformed into dot notation, the keys of the DictConfig must not contain
dots.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flytekitplugins_omegaconf-1.14.0b0.tar.gz
.
File metadata
- Download URL: flytekitplugins_omegaconf-1.14.0b0.tar.gz
- Upload date:
- Size: 12.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 933112bf42d759beec31c7f2f4e0311ed47377c8c44c9e920cfbf439953dd7bc |
|
MD5 | a2073ebd14c20f4fff991b9c63866949 |
|
BLAKE2b-256 | 6bdedb5ce683511ea7ec9fce6c06de813246fb1f81b0982cc04246eb146c12b7 |
File details
Details for the file flytekitplugins_omegaconf-1.14.0b0-py3-none-any.whl
.
File metadata
- Download URL: flytekitplugins_omegaconf-1.14.0b0-py3-none-any.whl
- Upload date:
- Size: 10.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea5ec803dc161cc280acfdb5b987a1398c79011d7d1007d1e124797cd712d218 |
|
MD5 | f0a861e41ce17653f188d889923db6ee |
|
BLAKE2b-256 | 58cf746793854beeef84f77051c315a9d7caa466a4a6b7a04eb2515af7ef36b0 |