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
ProudChicken98
Moderator
5 Questions, 11 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

5 × Eureka!
0 Votes
1 Answers
529 Views
0 Votes 1 Answers 529 Views
Sorry if I'm missing something, but how do I search for tags in the ClearML Hosted GUI App? For example, if I've tagged a model as in_production and want to ...
2 years ago
0 Votes
2 Answers
527 Views
0 Votes 2 Answers 527 Views
I'm trying to use query_models in the Model() class to get back results based on the project_name , but I changed the project name in the ClearML hosted GUI ...
2 years ago
0 Votes
5 Answers
509 Views
0 Votes 5 Answers 509 Views
Is there a way to upload a dict object as a YAML artifact instead of a JSON?
2 years ago
0 Votes
2 Answers
506 Views
0 Votes 2 Answers 506 Views
If I want to create a parameter that is a list, the text field gets very small in the gui. Is there a way to increase the size of the text input for fields o...
2 years ago
0 Votes
3 Answers
561 Views
0 Votes 3 Answers 561 Views
2 years ago
0 Hey, I Have Many Python Files. In The First Python File I Use The Following Line. Parameters = Task.Connect(Input) Now I Change The Hyperparameters On The Graphical Interface. But Now I Need The Hyperparameters In Every Python File. How Do I Have Access T

How do I preserve types when using task.get_parameters_as_dict() or task.get_parameters() ?

If I connect the params via task.connect(input) , change via the GUI, and use one of the methods above, all int and float values turn into strings. This doesn't work very well for hyperparameters that are numerical.

2 years ago
0 Hey, I Have Many Python Files. In The First Python File I Use The Following Line. Parameters = Task.Connect(Input) Now I Change The Hyperparameters On The Graphical Interface. But Now I Need The Hyperparameters In Every Python File. How Do I Have Access T

Well, I connected a dictionary of params that needed to be accessible in the GUI via task.connect using a loop, where I was filtering that dictionary:

for k, v in config_dict.items(): if k not in ['element1', 'element2']: task.connect(v, name=k.lower())
It seemed more logical to return the params with a single call:

task_parameters = task.get_parameters_as_dict()

2 years ago
0 Hey, I Have Many Python Files. In The First Python File I Use The Following Line. Parameters = Task.Connect(Input) Now I Change The Hyperparameters On The Graphical Interface. But Now I Need The Hyperparameters In Every Python File. How Do I Have Access T

Say I have a more complicated, nested dict of params, and I only want to send some of the nested keys to the GUI. I also want each one of those to be a "hyper parameters" field in the ClearML GUI. How do I connect each of these fields as such and return the correct types?

example:
config: field1: dict(param1=123, param2='text') field2: dict(param1=123, param2='text') field3: dict(param1=123, param2='text')
If I understand what you suggested above, doing ` task.connect(base...

2 years ago
0 I'M Trying To Use

Follow up: I see that if I move an Experiment to a new project, it does not copy the associated model files and must be done manually. Once I moved the models to the new project, the query works as expected.

2 years ago
0 Is There A Way To Upload A Dict Object As A Yaml Artifact Instead Of A Json?

We usually use YAML objects rather than JSON objects, so our code littered with local saving of objects just so that we can upload them again as artifacts.

2 years ago
0 Is There A Way To Upload A Dict Object As A Yaml Artifact Instead Of A Json?

Yes, that's what I'm doing right now. I was hoping there was something that felt a little less hacky.

2 years ago
0 Is There A Way To Upload A Dict Object As A Yaml Artifact Instead Of A Json?

Maybe. Will look into this. Thanks for the suggestion.

2 years ago