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

Reputation

0

Badges 1

9 × Eureka!
0 Votes
3 Answers
579 Views
0 Votes 3 Answers 579 Views
Hi all, I would like to put table with url links and image thumnails. I was able to get url as hyper link however I couldn't get thumnails. Any idea? My code...
one year ago
0 Votes
4 Answers
550 Views
0 Votes 4 Answers 550 Views
one year ago
0 Votes
8 Answers
539 Views
0 Votes 8 Answers 539 Views
one year ago
0 Votes
3 Answers
485 Views
0 Votes 3 Answers 485 Views
one year ago
0 Votes
2 Answers
568 Views
0 Votes 2 Answers 568 Views
Hi, I am using optuna for multi objective hyperparameter optimization. Currently it seems that existing optuna.py only supports single objective optimization...
one year ago
0 Hello, I'M Following The Tutorial Of

The issue might be already fixed, but I would leave a comment to this issue.

I encountered the same issue at the clone task execution.

I check the log message at the client node which ipynb is executed, the WARNING message was displayed "ClearML Could not read Jupyter Notebook: No template sub-directory with name 'script' found in the following paths ..." during the task creating.

I installed 'nbconvert' in client node and then issue was gone.
It might be better to install 'nbconvert' if y...

one year ago
0 Hi All, I Would Like To Put Table With Url Links And Image Thumnails. I Was Able To Get Url As Hyper Link However I Couldn'T Get Thumnails. Any Idea? My Code :

CostlyOstrich36 and AgitatedDove14
Thank you for your reply. I understood that plotly doesn't support thumbnails in table.

one year ago
0 Hi Everyone, Is There Any Way To Add Task_Types ? I Know Supported Values Are ‘Training’, ‘Testing’, ‘Inference’, ‘Data_Processing’, ‘Application’, ‘Monitor’, ‘Controller’, ‘Optimizer’, ‘Service’, ‘Qc’, ‘Custom’. I Have Just Used 'Custom' However I Want

Hi SuccessfulKoala55 , Thank you for your reply!
I tried put user-properties like "Category/type" as hyperparam and then I could see in experiment list with customize columns display.
However I realize that all users should change display setting to see user-properties by themselves.
Is there any option to create views in advance for other users?

one year ago
0 Hi All, I Would Like To Know The Input Page_Size Of Clearml/Backend_Api/Services/V2_13/Tasks.Py Getallrequest. I Have Confirmed The Response Rows Will Be Change Depends On Given Page_Size. However Even When I Pass Page_Size Number Over 500, The Response W

CostlyOstrich36
Thank you for your reply.
I tried following code. however i couldn't find scroll_id in the response.
` session = clearml.backend_api.Session()
url = r"{}/{}".format(session.get_api_server_host(), "tasks.get_all")
payload = { 'only_fields' : ["id", "name", "project", "completed", "user"],
'page' : 0,
'page_size' : 10,
'order_by' : [ 'completed' ]
}
response = requests.post(url, data=json.dumps(payload), auth=(session.access_...

one year ago
0 Hi All, I Would Like To Know The Input Page_Size Of Clearml/Backend_Api/Services/V2_13/Tasks.Py Getallrequest. I Have Confirmed The Response Rows Will Be Change Depends On Given Page_Size. However Even When I Pass Page_Size Number Over 500, The Response W

Thanks.

I changed my code using session.send_request() not using requests.post() .
session = clearml.backend_api.Session() payload = { 'only_fields' : ["id", "name", "project", "completed", "user"], 'page' : 0, 'page_size' : 5, 'scroll_id' : 1, 'order_by' : [ 'completed' ] } response = session.send_request("tasks", "get_all", json=payload) response.json()but still I got same error.
` {'meta': {'id': 'ede50394c3554b94a2...

one year ago
0 Hi All, I Would Like To Know The Input Page_Size Of Clearml/Backend_Api/Services/V2_13/Tasks.Py Getallrequest. I Have Confirmed The Response Rows Will Be Change Depends On Given Page_Size. However Even When I Pass Page_Size Number Over 500, The Response W

Here is my code.
session = clearml.backend_api.Session() url = r"{}/{}".format(session.get_api_server_host(), "tasks.get_all") payload = { 'only_fields' : ["id", "name", "project", "completed", "user"], 'page' : 0, 'page_size' : 5, 'scroll_id' : 1, 'order_by' : [ 'completed' ] } response = requests.post(url, data=json.dumps(payload), auth=(session.access_key, session.secret_key)) response.json()and response.json() shows
` {'...

one year ago
0 Hi All, I Would Like To Know The Input Page_Size Of Clearml/Backend_Api/Services/V2_13/Tasks.Py Getallrequest. I Have Confirmed The Response Rows Will Be Change Depends On Given Page_Size. However Even When I Pass Page_Size Number Over 500, The Response W

Thank you for additional comment.
But when i call with scroll_id="" i caught error message "Validation error (Integer size parameter greater than 1 should be provided when working with scroll)" .
so I tried to call with scroll_id=1 however i still got same error.

if it is correct way to increment page, i will use this way like example in the following https://github.com/allegroai/clearml/blob/master/examples/services/cleanup/cleanup_service.py

one year ago
0 Hi, I'M Trying To Get Projects And Tasks Using Clearml.Backend_Api.Services.Projects.Getallrequest And Clearml.Backend_Api.Services.Tasks.Getallrequest. Response Getallrequest Has "User" Attribute However It Is "Associated User Id". Is There Any Way To C

CostlyOstrich36
Thank you for your reply. I could get user name using apiserver.

for reference, I would like to ask one more question.
Does backend_api support all endpoint in apiserver ?
Because I couldn't find corresponding api in backend_api.

one year ago