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

Reputation

0

Badges 1

10 × Eureka!
0 Votes
2 Answers
513 Views
0 Votes 2 Answers 513 Views
Can anybody give a code example of how to do runtime changes to TaskScheduler? https://clear.ml/docs/latest/docs/references/sdk/scheduler/#class-automationta...
one year ago
0 Votes
3 Answers
537 Views
0 Votes 3 Answers 537 Views
Hello Is there any actual way to modify TaskScheduler in runtime as mentioned here? https://github.com/allegroai/clearml/blob/c29dd1fe062188fc1b906a992fc3498...
one year ago
0 Votes
4 Answers
647 Views
0 Votes 4 Answers 647 Views
Hey, is there an easy way to retrieve the code used to run an experiment? Without recreating the whole environment etc. The problem: I have ran a .py script ...
2 years ago
0 Votes
2 Answers
582 Views
0 Votes 2 Answers 582 Views
one year ago
0 Votes
2 Answers
524 Views
0 Votes 2 Answers 524 Views
Hi everyone Trying to leverage https://clear.ml/docs/latest/docs/pipelines/pipelines_sdk_tasks/#parameter_override in clearml pipelines. I can see that it ki...
one year ago
0 Votes
5 Answers
529 Views
0 Votes 5 Answers 529 Views
Hi, some plots don't render via report_plotly during training past certain point, but when it's completed, they do render. If i abort, they're not rendered. ...
2 years ago
0 Votes
2 Answers
518 Views
0 Votes 2 Answers 518 Views
Hello guys, i have trouble logging certain pandas dataframes ( https://github.com/allegroai/clearml/issues/510 ), could anyone provide some quick workaround?...
2 years ago
0 Hello Guys, I Have Trouble Logging Certain Pandas Dataframes (

The data is the output of TimeGapSplit.summary(df)

From here
https://github.com/koaning/scikit-lego/blob/main/sklego/model_selection.py

The dataframe supplied to summary is quite trivial. Think your example + some datetime column

2 years ago
0 Hi Everyone Trying To Leverage

exact scenario:

i have a task_1, which runs successfully with MyParam=['111'] i have a pipeline controller which runs successfully with task_1 as a step_1
If i use parameter_override for step_1 with value MyParam=999 (yes, not a dict), and run the pipeline, it fails (outputs this error in console logs), then reuses the ['111'] value and completes successfully. And i want it to fail completely, not reuse the safe default historic value

hope it clarifies

one year ago
0 Hi, Some Plots Don'T Render Via

Upd: fixed the error, it was in some unrelated code

2 years ago
0 Hi, Some Plots Don'T Render Via

Upd: cant reproduce "rendered on some iterations", now its only: not rendered until run is completed.

2 years ago
0 Hi, Some Plots Don'T Render Via

CostlyOstrich36

Updated.

They are rendered on some iterations, especially early iterations. Rest is correct

The testing runs are short but real runs will be long so its very undesirable

2 years ago
0 Can Anybody Give A Code Example Of How To Do Runtime Changes To Taskscheduler?

CostlyOstrich36 yes i tried, it does nothing

namely, changing this value does nothing, doesn't even affect the running tasktask = Task.get_task(task_id="...") # valid task task._data.configuration['schedule'].value # the value of config that contains schedule
2. tried to make schedule modifiable via Task.connect + TaskScheduler.add_task , no result
` scheduler_clearml_dict = {"config connected": [1, 2]}
task.connect(scheduler_clearml_dict) # <- this config is later modified...

one year ago
0 Hey Clearml Community! Quick Question About Plots - We'Re Trying To Draw A Reliability/Calibration Plot, We Want To Make It Square As Seen In The First Picture Since It Makes The Visual Analysis Of It Much Easier, But Clearml 'Insists' On Squishing It Dow

AgitatedDove14 sorry if this was confusing, i try to clarify:

  1. i don't use matplotlib period, hence don;t use report_matplotlib_figure . i use report_plotly

  2. the separator doesn't do the trick when there's just 1 plot in a row. and 1 plot in a row seems to be a "deeply" default behavior - i.e. would require ugly workarounds on our side like adding empty plots

  3. i explicitly set the dimensions in the plotly via the code above, before passing it to ` report_plo...

2 years ago
0 Hey Clearml Community! Quick Question About Plots - We'Re Trying To Draw A Reliability/Calibration Plot, We Want To Make It Square As Seen In The First Picture Since It Makes The Visual Analysis Of It Much Easier, But Clearml 'Insists' On Squishing It Dow

AgitatedDove14
Sure!

Btw on "some layout properties should not be there". if you use px API of Plotly , create some figure and check fig.layout you'll see it's quite populated. It'll be empty if the low-level go API of Plotly is used.

2 years ago
0 Hey Clearml Community! Quick Question About Plots - We'Re Trying To Draw A Reliability/Calibration Plot, We Want To Make It Square As Seen In The First Picture Since It Makes The Visual Analysis Of It Much Easier, But Clearml 'Insists' On Squishing It Dow

Hi SuccessfulKoala55
Author of the figures above here

The problem is, that it doesn't help. Left one - IPython render (what a dev sees in the notebook). Right one - what gets rendered in the web UI. Also it's built in Plotly , not Matplotlib

the code that is used for axes:
` ...
fig.update_layout(height=900, width=600)
fig.update_xaxes(
scaleanchor="y",
scaleratio=1,
row=1,
col=1,
)
fig.update_xaxes(range=[0.0, 1.0])
fig.u...

2 years ago
0 Hey, Is There An Easy Way To Retrieve The Code Used To Run An Experiment? Without Recreating The Whole Environment Etc. The Problem: I Have Ran A

ExasperatedCrab78 the problem is it is saved, rendered and copied to clipboard via a button as a git diff stdout, not as a valid python code

2 years ago
0 Hello Is There Any Actual Way To Modify

Yes i see it, but where's the endpoint to modify a config? TaskScheduler doesn't have any getters or setters for that

Getting id of the TaskScheduler doesn't lead to anything, since you dont have a getter like TaskScheduler.get_task(), you only have Task.get_task(), but there's no way to do .add_step() or .remove_step() because Task doesn't have such methods

User config is no-op, the schedule appears to be contained in some json configuration object created under the hood. Maybe this co...

one year ago
0 Hey, Is There An Easy Way To Retrieve The Code Used To Run An Experiment? Without Recreating The Whole Environment Etc. The Problem: I Have Ran A

ExasperatedCrab78 Such a git patch appeared to track a lot of unrelated unexecuted stuff. And was whimsical when being applied - it errored on all those unrelated code files as far as i could tell so i had to use --reject in git apply --reject --whitespace=fix experiment-a1fbb0ecfc4e4d698e017d8356d8be52.patch

I get that this feature is probably coming from a robust reproducibility design perspective. If only there'd be a shortcut tho. For example, official Python VSCode e...

2 years ago