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
ScaryBluewhale66
Moderator
10 Questions, 24 Answers
  Active since 10 January 2023
  Last activity 8 months ago

Reputation

0

Badges 1

18 × Eureka!
0 Votes
1 Answers
194 Views
0 Votes 1 Answers 194 Views
Hi, I just found a document improvement on https://clear.ml/docs/latest/docs/references/api/index/#request-format . I use the command in the document, then i...
one year ago
0 Votes
2 Answers
214 Views
0 Votes 2 Answers 214 Views
one year ago
0 Votes
1 Answers
193 Views
0 Votes 1 Answers 193 Views
Hello, I have two questions about TaskScheduler. I follow the https://github.com/allegroai/clearml/blob/master/examples/scheduler/cron_example.py , but I can...
one year ago
0 Votes
1 Answers
195 Views
0 Votes 1 Answers 195 Views
Hi, when I execute task.close() then task.get_status() . The output is completed not closed . I'm wondering when the status becomes closed . Also, I have ano...
10 months ago
0 Votes
4 Answers
246 Views
0 Votes 4 Answers 246 Views
Hi, Is there any approach to export the selected experiments to csv or Excel in a project? Just like to export the following tables. Thanks.
one year ago
0 Votes
7 Answers
210 Views
0 Votes 7 Answers 210 Views
Hi, Is there any approach to record some experiment metric (e.g., accuracy) and display in the experiment table so I can compare the metric among different e...
one year ago
0 Votes
3 Answers
219 Views
0 Votes 3 Answers 219 Views
Hello, I got a question. I start the ClearML server on premise. When I create a new credential, it doesn't have files_server info. Any idea? Thanks.
one year ago
0 Votes
3 Answers
210 Views
0 Votes 3 Answers 210 Views
Hello, I'd like to ask questions about TaskScheduler How to use the previous created TaskScheduler? Should I use the same TaskScheduler to create cron like t...
one year ago
0 Votes
12 Answers
225 Views
0 Votes 12 Answers 225 Views
Hello, I'm wondering if I can stop the specific logging for one plot (using matplotlib). When the data points become more, then the GUI of results -> plots g...
one year ago
0 Votes
11 Answers
206 Views
0 Votes 11 Answers 206 Views
Hello, I'm following the tutorial of https://clear.ml/docs/latest/docs/guides/frameworks/pytorch/notebooks/image/hyperparameter_search/ . In my understanding...
one year ago
0 Hello, I'M Wondering If I Can Stop The Specific Logging For One Plot (Using Matplotlib). When The Data Points Become More, Then The Gui Of

SuccessfulKoala55 Ok. Here is my code. Thanks.
` def plot_feature_scatter(df1, df2, features):
i = 0
sns.set_style("whitegrid")
plt.figure

fig, ax = plt.subplots(5, 4, figsize=(20, 20))

for feature in features:
    i += 1
    plt.subplot(5, 4, i)
    plt.scatter(df1[feature], df2[feature], marker="+", color='#2B3A67', alpha=0.2)
    plt.xlabel(feature, fontsize=9)
    
plt.show()

plot_feature_scatter(train_df.sample(50000), test_df.samp...

one year ago
one year ago
0 Hello, I'D Like To Ask Questions About Taskscheduler

CostlyOstrich36 Thanks.
I'm not sure how I can do it if I don't use the ClearML agent. In https://clear.ml/docs/latest/docs/references/sdk/scheduler/#class-automationtaskscheduler , I can't find how to stop it programmatically. Could I stop it by the UI if I don't use the ClearML agent. I see. In my understanding, the log would show all the message, but not so clear to me. Especially, if I have tens or hundreds of scheduled tasks. It's not convenient for me to check one by one.

one year ago
0 Hello, I'M Following The Tutorial Of

agent.enable_task_env = false
agent.hide_docker_command_env_vars.enabled = true
agent.docker_internal_mounts.sdk_cache = /clearml_agent_cache
agent.docker_internal_mounts.apt_cache = /var/cache/apt/archives
agent.docker_internal_mounts.ssh_folder = /root/.ssh
agent.docker_internal_mounts.pip_cache = /root/.cache/pip
agent.docker_internal_mounts.poetry_cache = /root/.cache/pypoetry
agent.docker_internal_mounts.vcs_cache = /root/.clearml/vcs-cache
agent.docker_internal_mounts.venv_build = /root...

one year ago
0 Hello, I'M Following The Tutorial Of

CostlyOstrich36 Thanks.
I installed ClearML-Agent to run it. However, I encounter another issue.

It shows the error message of

clearml_agent: ERROR: [Errno 2] No such file or directory: '/root/.clearml/venvs-builds/3.8/task_repository/PyTorch.git/ctbc/image_classification_CIFAR10.py'

I've executed https://github.com/allegroai/clearml/blob/master/examples/frameworks/pytorch/notebooks/image/image_classification_CIFAR10.ipynb before executing https://github.com/allegroai/clearml/blo...

one year ago
0 After Closing A Task You'Ll Have To Open It Again With Init Before You Can Do Anything With It. The Different Statuses Are Here:

TimelyMouse69
Yeah, there is no further explanation about the status of closed so I'm wondering when it can become closed . As for my second question, my intention is that no need to update the original task or create a new task for another training. I expect that I can do another training after task.close() and I won't encounter any issues, but I'm wrong.

10 months ago
10 months ago
0 After Closing A Task You'Ll Have To Open It Again With Init Before You Can Do Anything With It. The Different Statuses Are Here:

TimelyMouse69 Thanks.
About question #2,
I don't want to reuse a task. I want to temporarily pause or permanently stop this ClearML task so the ClearML task won't record my following experiment (training job).

10 months ago
0 Hello, I'M Wondering If I Can Stop The Specific Logging For One Plot (Using Matplotlib). When The Data Points Become More, Then The Gui Of

Hi SuccessfulKoala55 Do u mean give you the code to plot the image (but not including the data) or the image or the experiment I encountered this performance issue?

one year ago
0 Hi, When I Execute

Is there any update?

10 months ago
0 Hello, I'M Wondering If I Can Stop The Specific Logging For One Plot (Using Matplotlib). When The Data Points Become More, Then The Gui Of

SuccessfulKoala55 The image is something like this.
My questions are two
Is it possible to let ClearML not record this plot manually? Doesn't ClearML have performance issue for this kind of plot?

one year ago
0 Hello, I'M Wondering If I Can Stop The Specific Logging For One Plot (Using Matplotlib). When The Data Points Become More, Then The Gui Of

SuccessfulKoala55 No, I don't know how to turn off and turn on the auto-logging. Could you tell me? Thanks.

one year ago
9 months ago
0 Hi, Is There Any Approach To Record Some Experiment Metric (E.G., Accuracy) And Display In The Experiment Table So I Can Compare The Metric Among Different Experiments? The Approach I Found Is

Hi SweetBadger76
For example, I want to compare accuracy (the metrics I'm interested) among different experiments. This metrics isn't automatically recorded by ClearML so I want to manually record it.
I've found a workaround to achieve it (as mentioned in the original message), but I'm still wondering if there is any suggestion except using logger.report_scalar ?

one year ago
0 Hi, Is There Any Approach To Record Some Experiment Metric (E.G., Accuracy) And Display In The Experiment Table So I Can Compare The Metric Among Different Experiments? The Approach I Found Is

I see! Thanks AnxiousSeal95 and SweetBadger76 !

I have another related questions. Are the items in + metric I can select only the items in Results -> Scalars .

one year ago
0 After Closing A Task You'Ll Have To Open It Again With Init Before You Can Do Anything With It. The Different Statuses Are Here:

TimelyMouse69
Ok. It's strange. After executing mark_completed() , the kernel of Jupyter is dead. You can see the following image. The three cells (3~5) run at once, then the kernel is dead. I use task.close() but the status is still completed , not closed .

10 months ago
10 months ago