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
CheekyDolphin49
Moderator
4 Questions, 4 Answers
  Active since 21 June 2024
  Last activity 13 days ago

Reputation

0

Badges 1

4 × Eureka!
0 Votes
0 Answers
71 Views
0 Votes 0 Answers 71 Views
15 days ago
0 Votes
0 Answers
244 Views
0 Votes 0 Answers 244 Views
Hi! Does the hyperparameter optimization tool work only for ML network parameters? If not, what do i need to define in the base code?
2 months ago
0 Votes
6 Answers
72 Views
0 Votes 6 Answers 72 Views
15 days ago
0 Votes
5 Answers
295 Views
0 Votes 5 Answers 295 Views
To be specific, in my base task, the parameters that I want to optimize on appear under hyperparameters/General. However when I execute the optimization task...
2 months ago
2 months ago
0 Hi! I Would Like To Report 2 "Plt.Imshow" Images. Plain Plotting (I.E. "Plt.Figure()") Showed Only The Second One. When I Tried To Report Through The Logger Via "Report_Confusion_Matrix" It Reported Only The First One. Is There A Better Way Of Doing Thi

and if I use matrices which are larger than some value, then the following code doesn't work (i.e no plot appears):

import numpy as np

import matplotlib.pyplot as plt

from clearml import Task, Logger

task = Task.init(project_name="my_task",task_name="try")

interaction = np.random.rand(1200,1200)
Logger.current_logger().report_confusion_matrix(
title="interaction (near field)",
series="ignored",
matrix=np.abs(interaction),
xaxis="X",
yaxis="Y",
)

task.execut...

14 days ago
0 Hi! I Would Like To Report 2 "Plt.Imshow" Images. Plain Plotting (I.E. "Plt.Figure()") Showed Only The Second One. When I Tried To Report Through The Logger Via "Report_Confusion_Matrix" It Reported Only The First One. Is There A Better Way Of Doing Thi

import numpy as np

import matplotlib.pyplot as plt

from clearml import Task, Logger

task = Task.init(project_name="my_task",task_name="try")

interaction = np.random.rand(100,100)
plt.figure()
plt.imshow(np.abs(interaction))
plt.title('interaction (near field)')
plt.colorbar()
plt.show(block=True)

interaction = np.random.rand(100,100)
plt.figure()
plt.imshow(np.abs(interaction))
plt.title('interaction (far field)')
plt.colorbar()
plt.show(block=True)

task.execute_remotely(queue_name='a...

14 days ago
0 To Be Specific, In My Base Task, The Parameters That I Want To Optimize On Appear Under Hyperparameters/General. However When I Execute The Optimization Task, I Get An Error That "Could Not Find Requested Hyper-Parameters"

as I the example you gave-
hyper_parameters=[
UniformParameterRange('rep', min_value=0.1, max_value=0.9, step_size=0.05),
UniformParameterRange('coupling', min_value=0.1, max_value=0.6, step_size=0.05),
],

2 months ago