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 All, I Am Trying To Use Offline Mode For My Task And I Get These Messages And Shutdown. Can Anyone Explain?

Hi all,
I am trying to use offline mode for my Task and I get these messages and shutdown.
Can anyone explain?
ClearML Task: created new task id=<TASK_ID> ClearML results page: <URL> 2021-08-11 12:54:10,342 - clearml.Task - WARNING - Task <TASK_ID> was reset! if state is consistent we shall terminate. ClearML Monitor: GPU monitoring failed getting GPU reading, switching off GPU monitoring 2021-08-11 12:54:12,373 - clearml.Task - WARNING - Task <TASK_ID> was reset! if state is consistent we shall terminate. 2021-08-11 12:54:14,377 - clearml.Task - WARNING - Task <TASK_ID> was reset! if state is consistent we shall terminate. 2021-08-11 12:54:16,389 - clearml.Task - WARNING - ### TASK STOPPED - USER ABORTED - RESET ### Process finished with exit code 15

  
  
Posted 2 years ago
Votes Newest

Answers 4


How are you using it exactly? I'm not sure this should appear at all in offline mode...

  
  
Posted 2 years ago

Try:
Task.set_offline(True) task = Task.init(project_name=project_name, task_name=task_name)

  
  
Posted 2 years ago

I have these 3 lines in the beginning of my script, right after import statements. (not in " main " or any function):
task = Task.init(project_name=project_name, task_name=task_name) task.set_offline(True) logger = task.get_logger()

  
  
Posted 2 years ago

looks like it did it.
Thanks, SuccessfulKoala55 !

  
  
Posted 2 years ago
651 Views
4 Answers
2 years ago
one year ago
Tags