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, Is Clearml Support Creating New Tasks While In Offline Mode? I'M Trying To Run The Following:

Hi, is clearml support creating new tasks while in offline mode?
I'm trying to run the following:
` from clearml import Task

Task.set_offline(True)

task = Task.init(project_name="experiments", task_name="testing_task") `And I'm getting:
AttributeError: 'NoneType' object has no attribute 'response'

When trying to run the same code without the http://Task.se t_offline(True) it works just fine.

  
  
Posted 2 years ago
Votes Newest

Answers 6


What version of ClearML are you using?

  
  
Posted 2 years ago

Yes, offline got broken in 1.3.0 😞 , RC fixed it:
pip install clearml==1.3.1rc0Stable release later this week

  
  
Posted 2 years ago

I tried:
Task.set_offline(offline_mode=True) task = Task.init(project_name="experiments", task_name="testing")and still the same error.

  
  
Posted 2 years ago

Can you try specifying the argument explicitly? For example:
set_offline(offline_mode=False)

  
  
Posted 2 years ago

I'm using version 1.3.0

  
  
Posted 2 years ago

Thanks

  
  
Posted 2 years ago
622 Views
6 Answers
2 years ago
one year ago
Tags