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
How Do I Properly Complete A Task In A Python Console? If I Run The Code

How do I properly complete a task in a Python console? If I run the code

from clearml import Task, TaskTypes
task = Task.init(project_name='FirstTrial', task_name='first_trial', task_type=TaskTypes.training)
PACKAGE_VERSION = '0.4.1'
dataset_name = "Demodata"
task.mark_completed()

I get

<clearml.backend_api.session.callresult.CallResult object at 0x0000024E3A63A490>
2023-02-14 13:39:40,387 - clearml.Task - WARNING - ### TASK STOPPED - USER ABORTED - STATUS CHANGED ###
Process finished with exit code 15

and nothing appears in "execution" -> "installed packages".

  
  
Posted one year ago
Votes Newest

Answers

624 Views
0 Answers
one year ago
one year ago
Tags