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
Answered
Hi, How Could I Know That "Task.Init" Find My "Clearml.Conf" File? I Executed

Hi,
how could I know that "Task.init" find my "clearml.conf" file?
I executed task = Task.init(project_name='Classification', task_name='example') and nothing happens. task returns
<clearml.task.Task at 0x21d2b130ca0>I suppose to receive another output? application link to the created task?

  
  
Posted 2 years ago
Votes Newest

Answers 4


It should print to console...
print(task.get_output_log_web_page())

  
  
Posted 2 years ago

Hi PerplexedWalrus3
you should get something like the following on the console :
ClearML Task: created new task id=1ca59ef1f86d44bd81cb517d529d9e5a 2021-07-25 13:59:09 ClearML results page: 2021-07-25 13:59:16

  
  
Posted 2 years ago

What are you seeing?

  
  
Posted 2 years ago

I see nothing like that. the cell complete the execution but no output yield.

  
  
Posted 2 years ago