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
EnormousOstrich79
Moderator
4 Questions, 13 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

13 × Eureka!
0 Votes
12 Answers
861 Views
0 Votes 12 Answers 861 Views
Ist it possible to move artifacts from local storage to s3? Or do I have to delete the old one and create a new one with a location in s3?
2 years ago
0 Votes
6 Answers
754 Views
0 Votes 6 Answers 754 Views
Can I somehow disable the popup “WELCOME TO CLEARML” window at each visit? After closing and refreshing the site it just pops up again
2 years ago
0 Votes
6 Answers
784 Views
0 Votes 6 Answers 784 Views
Is there a functionality to see the dependency structure of datasets? Or has anyone written a script for this? πŸ˜„
2 years ago
0 Votes
10 Answers
956 Views
0 Votes 10 Answers 956 Views
I’m trying to get the meta-information about the code (section execution) to be auto-filled, however when I run the script with the pycharm testrunner, it is...
2 years ago
0 Ist It Possible To Move Artifacts From Local Storage To S3? Or Do I Have To Delete The Old One And Create A New One With A Location In S3?

Yes, I am using a self-hosted server.

So we ran some experiments(tasks) and uploaded the artifacts to local storage. We want to move them to a s3 storage

Furthermore we want to move existing datasets on one s3 server to another s3 server

2 years ago
0 Can I Somehow Disable The Popup “Welcome To Clearml” Window At Each Visit? After Closing And Refreshing The Site It Just Pops Up Again

The clearml-server is running on a remote machine and I do port-forwarding via ssh to localhost to access the web interface. Not sure if this is the cause

2 years ago
0 Ist It Possible To Move Artifacts From Local Storage To S3? Or Do I Have To Delete The Old One And Create A New One With A Location In S3?

That’s not as straightfoward as it might seem.. the clearml client lib handles artifacts as read only dict. I am not taking a look at changing the values directly in mongodb

2 years ago
0 Ist It Possible To Move Artifacts From Local Storage To S3? Or Do I Have To Delete The Old One And Create A New One With A Location In S3?

For anyone else struggling with this:
Shell into the mongo container and run
db.task.find({ "project": "<PROJECT_ID>" }, { "execution.artifacts.$": 1 }).forEach(function (doc) { Object.keys(doc.execution.artifacts).forEach(function (k) { doc.execution.artifacts[k].uri = doc.execution.artifacts[k].uri.replace("old_host", "new_host"); db.task.updateOne({ _id: doc._id }, { $set: { execution: doc.execution } }) }) });

2 years ago
0 I’M Trying To Get The Meta-Information About The Code (Section Execution) To Be Auto-Filled, However When I Run The Script With The Pycharm Testrunner, It Is Missing. If I Use

Hey SweetBadger76
By using Task.create and specifying the path to the script clearML is able to collect all the source information, however the experiment then is a draft and does not upload anything

2 years ago
0 Is There A Functionality To See The Dependency Structure Of Datasets? Or Has Anyone Written A Script For This?

Like the relations between the datasets. If I have dataset A as a child of B and B is a child of C I would like to have some textual/visual output like

C<-B<-A

2 years ago