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 Everyone, I Have A Bit Of A Vague Problem. My Code Used To Work Fine But All Of A Sudden It Broke Down. When I Run An Experiment Now, It Just Stops Execution Without Returning Any Errors. After Some Searching, I Found Out That The Code Never Proceeds

Hi everyone,

I have a bit of a vague problem. My code used to work fine but all of a sudden it broke down. When I run an experiment now, it just stops execution without returning any errors. After some searching, I found out that the code never proceeds after using the Dataset.get() function. So it executes everything up until the first line below but never reaches the second line.

Does anyone have any advice on how to proceed from here? Thanks in advance!

data = Dataset.get(dataset_id=dataset_id) data_path = data.get_local_copy()
clearml version 1.6.4
python version 3.9.5

  
  
Posted one year ago
Votes Newest

Answers 3


where is the dataset stored? maybe you deleted the credentials by mistake? or maybe you are not installing the libraries needed (for example if using AWS you need boto3, if GCP you need google-cloud-storage)

  
  
Posted one year ago

I use the default storage option, so that is on the clearml file server. It's only a pretty small scale project so I don't need other elaborate options. Thanks for your suggestion though!

  
  
Posted one year ago

Hi TartSeagull57 , are you running a local ClearML server? Did you upgrade it recently or maybe did you change clearml version?

  
  
Posted one year ago
597 Views
3 Answers
one year ago
one year ago
Tags