Materializers
Initialization of ZenML materializers.
Materializers are used to convert a ZenML artifact into a specific format. They
are most often used to handle the input or output of ZenML steps, and can be
extended by building on the BaseMaterializer
class.
BuiltInContainerMaterializer
Bases: BaseMaterializer
Handle built-in container types (dict, list, set, tuple).
Source code in src/zenml/materializers/built_in_materializer.py
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 |
|
__init__(uri, artifact_store=None)
Define self.data_path
and self.metadata_path
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uri
|
str
|
The URI where the artifact data is stored. |
required |
artifact_store
|
Optional[BaseArtifactStore]
|
The artifact store where the artifact data is stored. |
None
|
Source code in src/zenml/materializers/built_in_materializer.py
297 298 299 300 301 302 303 304 305 306 307 308 |
|
extract_metadata(data)
Extract metadata from the given built-in container object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Any
|
The built-in container object to extract metadata from. |
required |
Returns:
Type | Description |
---|---|
Dict[str, MetadataType]
|
The extracted metadata as a dictionary. |
Source code in src/zenml/materializers/built_in_materializer.py
474 475 476 477 478 479 480 481 482 483 484 485 |
|
load(data_type)
Reads a materialized built-in container object.
If the data was serialized to JSON, deserialize it.
Otherwise, reconstruct all elements according to the metadata file:
1. Resolve the data type using find_type_by_str()
,
2. Get the materializer via the default_materializer_registry
,
3. Initialize the materializer with the desired path,
4. Use load()
of that materializer to load the element.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_type
|
Type[Any]
|
The type of the data to read. |
required |
Returns:
Type | Description |
---|---|
Any
|
The data read. |
Raises:
Type | Description |
---|---|
RuntimeError
|
If the data was not found. |
Source code in src/zenml/materializers/built_in_materializer.py
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 |
|
save(data)
Materialize a built-in container object.
If the object can be serialized to JSON, serialize it.
Otherwise, use the default_materializer_registry
to find the correct
materializer for each element and materialize each element into a
subdirectory.
Tuples and sets are cast to list before materialization.
For non-serializable dicts, materialize keys/values as separate lists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Any
|
The built-in container object to materialize. |
required |
Raises:
Type | Description |
---|---|
Exception
|
If any exception occurs, it is raised after cleanup. |
Source code in src/zenml/materializers/built_in_materializer.py
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 |
|
save_visualizations(data)
Save visualizations for the given data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Any
|
The data to save visualizations for. |
required |
Returns:
Type | Description |
---|---|
Dict[str, VisualizationType]
|
A dictionary of visualization URIs and their types. |
Source code in src/zenml/materializers/built_in_materializer.py
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 |
|
BuiltInMaterializer
Bases: BaseMaterializer
Handle JSON-serializable basic types (bool
, float
, int
, str
).
Source code in src/zenml/materializers/built_in_materializer.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
|
__init__(uri, artifact_store=None)
Define self.data_path
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uri
|
str
|
The URI where the artifact data is stored. |
required |
artifact_store
|
Optional[BaseArtifactStore]
|
The artifact store where the artifact data is stored. |
None
|
Source code in src/zenml/materializers/built_in_materializer.py
66 67 68 69 70 71 72 73 74 75 76 |
|
extract_metadata(data)
Extract metadata from the given built-in container object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Union[bool, float, int, str]
|
The built-in container object to extract metadata from. |
required |
Returns:
Type | Description |
---|---|
Dict[str, MetadataType]
|
The extracted metadata as a dictionary. |
Source code in src/zenml/materializers/built_in_materializer.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
|
load(data_type)
Reads basic primitive types from JSON.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_type
|
Union[Type[bool], Type[float], Type[int], Type[str]]
|
The type of the data to read. |
required |
Returns:
Type | Description |
---|---|
Any
|
The data read. |
Source code in src/zenml/materializers/built_in_materializer.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
|
save(data)
Serialize a basic type to JSON.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Union[bool, float, int, str]
|
The data to store. |
required |
Source code in src/zenml/materializers/built_in_materializer.py
98 99 100 101 102 103 104 105 106 107 108 |
|
save_visualizations(data)
Save visualizations for the given basic type.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Union[bool, float, int, str]
|
The data to save visualizations for. |
required |
Returns:
Type | Description |
---|---|
Dict[str, VisualizationType]
|
A dictionary of visualization URIs and their types. |
Source code in src/zenml/materializers/built_in_materializer.py
110 111 112 113 114 115 116 117 118 119 120 121 |
|
BytesMaterializer
Bases: BaseMaterializer
Handle bytes
data type, which is not JSON serializable.
Source code in src/zenml/materializers/built_in_materializer.py
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
|
__init__(uri, artifact_store=None)
Define self.data_path
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uri
|
str
|
The URI where the artifact data is stored. |
required |
artifact_store
|
Optional[BaseArtifactStore]
|
The artifact store where the artifact data is stored. |
None
|
Source code in src/zenml/materializers/built_in_materializer.py
148 149 150 151 152 153 154 155 156 157 158 |
|
load(data_type)
Reads a bytes object from file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_type
|
Type[Any]
|
The type of the data to read. |
required |
Returns:
Type | Description |
---|---|
Any
|
The data read. |
Source code in src/zenml/materializers/built_in_materializer.py
160 161 162 163 164 165 166 167 168 169 170 |
|
save(data)
Save a bytes object to file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Any
|
The data to store. |
required |
Source code in src/zenml/materializers/built_in_materializer.py
172 173 174 175 176 177 178 179 |
|
save_visualizations(data)
Save visualizations for the given bytes data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
bytes
|
The bytes data to save visualizations for. |
required |
Returns:
Type | Description |
---|---|
Dict[str, VisualizationType]
|
A dictionary of visualization URIs and their types. |
Source code in src/zenml/materializers/built_in_materializer.py
181 182 183 184 185 186 187 188 189 190 |
|
CloudpickleMaterializer
Bases: BaseMaterializer
Materializer using cloudpickle.
This materializer can materialize (almost) any object, but does so in a non-reproducble way since artifacts cannot be loaded from other Python versions. It is recommended to use this materializer only as a last resort.
That is also why it has SKIP_REGISTRATION
set to True and is currently
only used as a fallback materializer inside the materializer registry.
Source code in src/zenml/materializers/cloudpickle_materializer.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|
load(data_type)
Reads an artifact from a cloudpickle file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_type
|
Type[Any]
|
The data type of the artifact. |
required |
Returns:
Type | Description |
---|---|
Any
|
The loaded artifact data. |
Source code in src/zenml/materializers/cloudpickle_materializer.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
|
save(data)
Saves an artifact to a cloudpickle file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Any
|
The data to save. |
required |
Source code in src/zenml/materializers/cloudpickle_materializer.py
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
PathMaterializer
Bases: BaseMaterializer
Materializer for Path objects.
This materializer handles pathlib.Path
objects by storing their contents
in a compressed tar archive within the artifact store if it's a directory,
or directly copying the file if it's a single file.
Source code in src/zenml/materializers/path_materializer.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
|
load(data_type)
Copy the artifact files to a local temp directory or file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_type
|
Type[Any]
|
Unused. |
required |
Returns:
Type | Description |
---|---|
Any
|
Path to the local directory or file that contains the artifact. |
Raises:
Type | Description |
---|---|
FileNotFoundError
|
If the artifact is not found in the artifact store. |
Source code in src/zenml/materializers/path_materializer.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
|
save(data)
Store the directory or file in the artifact store.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
Any
|
Path to a local directory or file to store. Must be a Path object. |
required |
Raises:
Type | Description |
---|---|
TypeError
|
If data is not a Path object. |
Source code in src/zenml/materializers/path_materializer.py
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
|
PydanticMaterializer
Bases: BaseMaterializer
Handle Pydantic BaseModel objects.
Source code in src/zenml/materializers/pydantic_materializer.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
extract_metadata(data)
Extract metadata from the given BaseModel object.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
BaseModel
|
The BaseModel object to extract metadata from. |
required |
Returns:
Type | Description |
---|---|
Dict[str, MetadataType]
|
The extracted metadata as a dictionary. |
Source code in src/zenml/materializers/pydantic_materializer.py
59 60 61 62 63 64 65 66 67 68 |
|
load(data_type)
Reads BaseModel from JSON.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_type
|
Type[BaseModel]
|
The type of the data to read. |
required |
Returns:
Type | Description |
---|---|
Any
|
The data read. |
Source code in src/zenml/materializers/pydantic_materializer.py
37 38 39 40 41 42 43 44 45 46 47 48 |
|
save(data)
Serialize a BaseModel to JSON.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
BaseModel
|
The data to store. |
required |
Source code in src/zenml/materializers/pydantic_materializer.py
50 51 52 53 54 55 56 57 |
|
ServiceMaterializer
Bases: BaseMaterializer
Materializer to read/write service instances.
Source code in src/zenml/materializers/service_materializer.py
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
|
extract_metadata(service)
Extract metadata from the given service.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
service
|
BaseService
|
The service to extract metadata from. |
required |
Returns:
Type | Description |
---|---|
Dict[str, MetadataType]
|
The extracted metadata as a dictionary. |
Source code in src/zenml/materializers/service_materializer.py
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
|
load(data_type)
Creates and returns a service.
This service is instantiated from the serialized service configuration and last known status information saved as artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_type
|
Type[Any]
|
The type of the data to read. |
required |
Returns:
Type | Description |
---|---|
BaseService
|
A ZenML service instance. |
Source code in src/zenml/materializers/service_materializer.py
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
|
save(service)
Writes a ZenML service.
The configuration and last known status of the input service instance are serialized and saved as an artifact.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
service
|
BaseService
|
A ZenML service instance. |
required |
Source code in src/zenml/materializers/service_materializer.py
56 57 58 59 60 61 62 63 64 65 66 67 |
|
StructuredStringMaterializer
Bases: BaseMaterializer
Materializer for HTML or Markdown strings.
Source code in src/zenml/materializers/structured_string_materializer.py
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
|
load(data_type)
Loads the data from the HTML or Markdown file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data_type
|
Type[STRUCTURED_STRINGS]
|
The type of the data to read. |
required |
Returns:
Type | Description |
---|---|
STRUCTURED_STRINGS
|
The loaded data. |
Source code in src/zenml/materializers/structured_string_materializer.py
41 42 43 44 45 46 47 48 49 50 51 |
|
save(data)
Save data as an HTML or Markdown file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
STRUCTURED_STRINGS
|
The data to save as an HTML or Markdown file. |
required |
Source code in src/zenml/materializers/structured_string_materializer.py
53 54 55 56 57 58 59 60 61 62 |
|
save_visualizations(data)
Save visualizations for the given data.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
STRUCTURED_STRINGS
|
The data to save visualizations for. |
required |
Returns:
Type | Description |
---|---|
Dict[str, VisualizationType]
|
A dictionary of visualization URIs and their types. |
Source code in src/zenml/materializers/structured_string_materializer.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
|
UUIDMaterializer
Bases: BaseMaterializer
Materializer to handle UUID objects.
Source code in src/zenml/materializers/uuid_materializer.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
|
__init__(uri, artifact_store=None)
Define self.data_path
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uri
|
str
|
The URI where the artifact data is stored. |
required |
artifact_store
|
Optional[BaseArtifactStore]
|
The artifact store where the artifact data is stored. |
None
|
Source code in src/zenml/materializers/uuid_materializer.py
34 35 36 37 38 39 40 41 42 43 44 |
|
extract_metadata(data)
Extract metadata from the UUID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
UUID
|
The UUID to extract metadata from. |
required |
Returns:
Type | Description |
---|---|
Dict[str, MetadataType]
|
A dictionary of metadata extracted from the UUID. |
Source code in src/zenml/materializers/uuid_materializer.py
68 69 70 71 72 73 74 75 76 77 78 79 |
|
load(_)
Read UUID from artifact store.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
_
|
Type[UUID]
|
The type of the data to be loaded. |
required |
Returns:
Type | Description |
---|---|
UUID
|
The loaded UUID. |
Source code in src/zenml/materializers/uuid_materializer.py
46 47 48 49 50 51 52 53 54 55 56 57 |
|
save(data)
Write UUID to artifact store.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data
|
UUID
|
The UUID to be saved. |
required |
Source code in src/zenml/materializers/uuid_materializer.py
59 60 61 62 63 64 65 66 |
|