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
Unanswered
Some Example Also Bringing {}:From Clearml Import Task # Initialize The Task Task = Task.Init(Project_Name='Your_Project', Task_Name='Your_Task') # Define A Configuration Config = { 'Dataset_Id': '12345', 'Learning_Rate': 0.01, # Other Confi

some example also bringing {}:from clearml import Task

Initialize the task

task = Task.init(project_name='your_project', task_name='your_task')

Define a configuration

config = {
'dataset_id': '12345',
'learning_rate': 0.01,
# other configuration parameters
}
print('setting config')

Set the configuration in the task

task.set_parameters(config)

Connect the configuration to the task

connected_config = task.connect({})

Use the configuration

print("Configuration:", connected_config) --> clearml server ebApp: 1.13.0-414 • Server: 1.13.0-414 • API: 2.27, client: 1.13.2

  
  
Posted 4 months ago
Votes Newest

Answers

254 Views
0 Answers
4 months ago
4 months ago
Tags