Integrate the power of Microsoft Azure with ZenML to effortlessly orchestrate and manage your machine learning pipelines in the cloud. This integration allows you to leverage Azure's scalable infrastructure and comprehensive ML services while benefiting from ZenML's streamlined workflow management capabilities.
# Register a ZenML Azure stack by using existing infrastructure
# zenml stack register <STACK_NAME> -p azure
# OR, create a ZenML Azure stack by deploying new infrastructure
# zenml stack deploy -p azure
from zenml import pipeline, step
@step
def hello_world() -> str:
return "Hello World!"
@pipeline
def my_pipeline():
_ = hello_world()
if __name__ == "__main__":
my_pipeline()
Expand your ML pipelines with more than 50 ZenML Integrations