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
Having A Problem Using Clearml-Data. When I Create Dataset And Get It Later Using Id, In Same Code File, It Works Normally. Now If I Later Try To Get That Dataset In File 2 In The Same Directory, I Get An Error Regarding State Or Something And Am Not Able

Having a problem using ClearML-Data. When I create dataset and get it later using ID, in same code file, it works normally. Now if I later try to get that dataset in File 2 in the same directory, I get an error regarding state or something and am not able to load it. Only problem is, now I can't get the dataset in the previous file as well using that ID.

  
  
Posted 2 years ago
Votes Newest

Answers 10


I think I understand now that I first need to have clearml server up and running.

Yeah, ClearML CLI tools and SDK always rely on a ClearML Server

  
  
Posted 2 years ago

I was getting a different error when I posted this question. Now i'm just getting this connection error

  
  
Posted 2 years ago

keeps retrying and failing when I use Dataset.get

  
  
Posted 2 years ago

Retrying (Retry(total=239, connect=239, read=240, redirect=240, status=240)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fb2191dcaf0>: Failed to establish a new connection: [Errno 111] Connection refused')': /auth.login
Retrying (Retry(total=238, connect=238, read=240, redirect=240, status=240)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7fb2191e10a0>: Failed to establish a new connection: [Errno 111] Connection refused')': /auth.login

  
  
Posted 2 years ago

Hi VexedCat68 , what is the error that you're receiving? Do you have a print of it by chance? Also what are you trying to do with 'File 2'?

  
  
Posted 2 years ago

VexedCat68 , how is your ~/clearml.conf configured? And is there any chance you were having network problems at the time you tried to run it?

  
  
Posted 2 years ago

Then I can use ClearML-Data with it properly.

  
  
Posted 2 years ago

VexedCat68 this looks like the SDK code simply can't get to the server, which implies, as CostlyOstrich36 suggested, that your clearml.conf file is not properly configured, or that there's a FW issue when connecting to the server

  
  
Posted 2 years ago

I think I understand now that I first need to have clearml server up and running.

  
  
Posted 2 years ago

I have the server running now and for now it seems that I'm able to get the dataset even in the other file. I'll mess around with it now to get a hang of it and see how it actually works

  
  
Posted 2 years ago