File size: 620 Bytes
d660b02
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from pathlib import Path

from clearml import PipelineDecorator

from steps import export as export_steps


@PipelineDecorator.pipeline(name="export_artifact_to_json", project="CS370")
def export_artifact_to_json(artifact_names: list[str], output_dir: Path = Path("output")) -> None:
    for artifact_name in artifact_names:
        #artifact = Client().get_artifact_version(name_id_or_prefix=artifact_name)

        #data = export_steps.serialize_artifact(artifact=artifact, artifact_name=artifact_name)

        #export_steps.to_json(data=data, to_file=output_dir / f"{artifact_name}.json")
        pass