Building Pipelines
Core Concepts
Define a Pipeline
- pipeline:
name: train-and-predict
nodes:
- name: train
step: yolo
type: execution
- name: inference
step: inference
type: execution
override:
inputs:
- name: model
- name: images
default: https://ultralytics.com/images/bus.jpg
edges:
- [train.output.best.onnx, inference.input.model]What's happening here?
Run Your Pipeline
Monitor Pipeline Progress
Related Content
Last updated
Was this helpful?
