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
Profile picture
PoisedDove36
Moderator
2 Questions, 5 Answers
  Active since 17 April 2024
  Last activity 5 months ago

Reputation

0

Badges 1

5 × Eureka!
0 Votes
4 Answers
497 Views
0 Votes 4 Answers 497 Views
I upgraded clearML to 1.15.0 from 1.0 The UI says it’s running WebApp: 1.15.0-472 • Server: 1.15.0-472 • API: 2.29 And the UI is missing a lot of details lik...
7 months ago
0 Votes
4 Answers
402 Views
0 Votes 4 Answers 402 Views
SDK’s Dataset.get and Dataset.create are appending .datasets/{dataset-name} to the actual project name and failing because my datasets are from an older vers...
5 months ago
0 I Upgraded Clearml To 1.15.0 From 1.0 The Ui Says It’S Running

None

I did the equivalent of the manual migration steps here.

6 months ago
0 I Upgraded Clearml To 1.15.0 From 1.0 The Ui Says It’S Running

I upgraded mongo in that order.

I didn’t see any db migrations other than setting feature compatibility

6 months ago
0 I Upgraded Clearml To 1.15.0 From 1.0 The Ui Says It’S Running

I noticed the UI expects basename and the response from projects endpoint doesn’t have that key

7 months ago
0 Sdk’S Dataset.Get And Dataset.Create Are Appending

Hi John,

I am able to get the dataset using the dataset-id but not using dataset-name and project

  • I upgraded ClearML from 1.0 to 1.5. I’ve followed the guide to setFeatureCompatibilityVersion during the upgrade
  • The difference between 1.0 and 1.5 seems to be that datasets, when they’re created go into a special project-1/.datasets/{dataset-name} project. In 1.5, we were just storing it directly in the project-1 project.
  • Now, because of this when I try to read a dataset using th...
5 months ago
0 Sdk’S Dataset.Get And Dataset.Create Are Appending

I’ve resorted to calling list_datasets and then getting the id and calling get by id

5 months ago