Spaces:
Runtime error
Runtime error
File size: 1,375 Bytes
c73381c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# {% include 'template/license_header' %}
from zenml import get_step_context, step
from zenml.logger import get_logger
logger = get_logger(__name__)
@step
def model_promoter(accuracy: float, stage: str = "production") -> bool:
"""Dataset reader step.
This is an example of a dataset reader step that load Breast Cancer dataset.
This step is parameterized, which allows you to configure the step
independently of the step code, before running it in a pipeline.
In this example, the step can be configured with number of rows and logic
to drop target column or not. See the documentation for more information:
https://docs.zenml.io/user-guide/advanced-guide/configure-steps-pipelines
Args:
accuracy: Accuracy of the model.
stage: Which stage to promote the model to.
Returns:
Whether the model was promoted or not.
"""
### ADD YOUR OWN CODE HERE - THIS IS JUST AN EXAMPLE ###
if accuracy < 0.8:
logger.info(
f"Model accuracy {accuracy*100:.2f}% is below 80% ! Not promoting model."
)
is_promoted = False
else:
logger.info(f"Model promoted to {stage}!")
is_promoted = True
model_version = get_step_context().model_version
model_version.set_stage(stage, force=True)
### YOUR CODE ENDS HERE ###
return is_promoted
|