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
UpsetWalrus59
Moderator
17 Questions, 32 Answers
  Active since 09 May 2023
  Last activity one year ago

Reputation

0

Badges 1

31 × Eureka!
0 Votes
1 Answers
890 Views
0 Votes 1 Answers 890 Views
Hi, what is the expect input of the series parameter of the logger.report_line_plot function? I am passing list of two lists (like [[1,2,3], [4,5,6]] ) to pl...
one year ago
0 Votes
1 Answers
937 Views
0 Votes 1 Answers 937 Views
Hi, I added in my code task.ignore_requirements("pywin32") however this library is still getting added by ClearML to the packages (which causes error on Linu...
one year ago
0 Votes
2 Answers
929 Views
0 Votes 2 Answers 929 Views
Hi, what would be the best practice for using the Datasets when testing different features? Should I just add new Dataset each time I try new feature to the ...
one year ago
0 Votes
7 Answers
1K Views
0 Votes 7 Answers 1K Views
one year ago
0 Votes
2 Answers
859 Views
0 Votes 2 Answers 859 Views
Hi, is there any way to download all the experiments including their metrics, hyperparameters and so on?
one year ago
0 Votes
7 Answers
844 Views
0 Votes 7 Answers 844 Views
Hi, what could be the reason for my Task.init taking close to 10min? See below screenshot of example run which took around 8min.
one year ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Hi, I noticed that my experiments fail if I try to clone them and enqueue them after I already pushed another commits (following the commit of the cloned exp...
one year ago
0 Votes
11 Answers
962 Views
0 Votes 11 Answers 962 Views
Hi, I am getting line 57, in get_local_copy if helper.base_url == "file://": AttributeError: 'NoneType' object has no attribute 'base_url' when trying to run...
one year ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
one year ago
0 Votes
8 Answers
973 Views
0 Votes 8 Answers 973 Views
one year ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
one year ago
0 Votes
2 Answers
935 Views
0 Votes 2 Answers 935 Views
Hi, after I create my clearml.conf file with clearml-agent init I edit the azure.storage field afterwards to put there account_name and account_key , is ther...
one year ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Hi, After my model's iterations ended and task turned to Completed I wanted to still train the model further for more iterations. I found there is continue_l...
one year ago
0 Votes
3 Answers
911 Views
0 Votes 3 Answers 911 Views
Hi, I noticed that when I commit changes and not push them and try to run a job I am getting clearml_agent: ERROR: Failed cloning repository. and advice to M...
one year ago
0 Votes
4 Answers
946 Views
0 Votes 4 Answers 946 Views
Hi, could somebody please confirm if the output_uri parameter for creating Dataset in Azure is in the form: "azure://. blob.core.windows.net/ " ?
one year ago
0 Votes
2 Answers
847 Views
0 Votes 2 Answers 847 Views
one year ago
0 Votes
2 Answers
936 Views
0 Votes 2 Answers 936 Views
one year ago
0 Hi, I Am Having Trouble With Comparing Plotly Plots From Different Experiments. The Plots, When You Look At Them Within One Experiment Look Fine (Attaching Screenshot), However Once You Try To Compare Plots From Two Experiments There Are Few Problems:

I came up with this minimal example - it is a bit different but the behavior is also not as expected I think:

import numpy as np
import plotly.express as px
from clearml import Task

task = Task.init(project_name='MyProject', task_name='task1', 
                 task_type=Task.TaskTypes.training)
logger = task.get_logger()
y_pred = np.random.rand(100)
y_test = np.random.rand(100)
fig = px.line({'y_pred': y_pred, 'y_test': y_test})
logger.report_plotly(title=f'Forecast', series=f'Forecas...
one year ago
Show more results compactanswers