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
There Is A Problem Starting From Clearml 1.7.0 With Python-Fire

There is a problem starting from clearml 1.7.0 with python-fire

` from clearml import Task

import fire

def check(first):
print(first)

if name == 'main':
fire.Fire() and running python example.py check world This results with an error ValueError: dictionary update sequence element #0 has length 5; 2 is required When downgrading clearml to 1.6.4 ` it works

  
  
Posted one year ago
Votes Newest

Answers 8


Did you try the workaround provided in https://clearml.slack.com/archives/CTK20V944/p1664887550256279 by AgitatedDove14 ?

  
  
Posted one year ago

right, it works on 1.7.1

  
  
Posted one year ago

i didn’t, prefer not to add temporary workarounds

  
  
Posted one year ago

I think this should include both fixes

  
  
Posted one year ago

looks like it’s working 🙂 tnx

  
  
Posted one year ago

try with pip install -U clearml==1.7.2rc1

  
  
Posted one year ago

Hi PricklyRaven28 , can you try with the latest clearml version? 1.7.1

  
  
Posted one year ago

tnx, i just can’t use 1.7.1 because of the pipeline problem from before

  
  
Posted one year ago
581 Views
8 Answers
one year ago
one year ago
Tags