23 lines
815 B
Python
23 lines
815 B
Python
from clearml.automation import PipelineController
|
|
if __name__ == '__main__':
|
|
pipe = PipelineController(
|
|
name="Git_Data_Processing_Pipeline",
|
|
project="Git_Pipeline_Demo",
|
|
version="1.0.0",
|
|
add_pipeline_tags=True
|
|
)
|
|
pipe.set_default_execution_queue("default")
|
|
pipe.add_step(
|
|
name="vcode",
|
|
# parents=["data_preprocessing"],
|
|
base_task_project="Sample",
|
|
base_task_name="vcode",
|
|
# parameter_override={
|
|
# "General/image_url": "https://acai.ketidev.kr:20443/detect/image/202606/20260619_145116_image.jpg"
|
|
# },
|
|
cache_executed_step=False
|
|
)
|
|
# pipe.start(queue="default")
|
|
pipe.start_locally(run_pipeline_steps_locally=True)
|
|
pipe.wait()
|
|
print("파이프라인 실행이 완료되었습니다!") |