Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Unanswered
Hello, I Am Running Into An Issue With Clearml Pipelines. I Have A Training Script That I Broke Up Into Prepare_Data, Train And Evaluate. I Am Using

Hello,

I am running into an issue with ClearML pipelines.
I have a training script that i broke up into prepare_data, train and evaluate. I am using PipelineDecorator.component() for each of the steps.
I am running into an issue at the train_model step. I am trying to train a deep learning model using pytorch lightning. My decorator function is PipelineDecorator.component(task.type=TaskTypes.training) but when I look at the artifacts, ClearML is storing the checkpoints for each epoch. I do not want this. I simply want clearml to log the best model at the end of training. How do I do this in a pipeline. Thank you very much

  
  
Posted 12 hours ago
Votes Newest

Answers