Reputation
Badges 1
9 × Eureka!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
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...
Hi Erez,
Thank you for your reply and consideration.
I'm looking forward to it!
CostlyOstrich36 and AgitatedDove14
Thank you for your reply. I understood that plotly doesn't support thumbnails in table.
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
` {'...
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_...
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.
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...
Thanks, I could confirm that URL with custom column works for share same view!
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?