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
Answered
Hi, Experiments Under Projects In Ui Is Same As Tasks In Api Endpoint? In Other Words, When Iterating Over

Hi,

Experiments under Projects in UI is same as tasks in api endpoint?
In other words, when iterating over https://clear.ml/docs/latest/docs/references/api/tasks#post-tasksget_all () giving list of all experiments in Projects>ALL Experiments?
https://clear.ml/docs/latest/docs/references/api/tasks#post-tasksget_all

  
  
Posted one year ago
Votes Newest

Answers 9


I am missing something in this. Also, I want to use
https://clear.ml/docs/latest/docs/references/api/definitions#taskstask_urls
tasks.task_urls()
It doesn't mention request parameters in this.

` from clearml.backend_api.session.client import APIClient
from clearml import Task

Create an instance of APIClient

client = APIClient()

tasks = client.tasks.task_urls()
print (tasks)
Traceback (most recent call last):
File "get_all_users.py", line 15, in <module>
tasks = client.tasks.task_urls()
AttributeError: 'Tasks' object has no attribute 'task_urls' `

  
  
Posted one year ago

Oh, that's probably my bad 😞 - not all API endpoints are currently available with the APIClient. For now, you can use a direct "low level" call using the session, like:
resp = client.session.send_request("users", "get_all") print(resp.json()["data"]["users"])

  
  
Posted one year ago

https://clear.ml/docs/latest/docs/references/api/definitions#taskstask_urls
tasks.task_urls()
It doesn't mention request parameters in this.

` from clearml.backend_api.session.client import APIClient
from clearml import Task

Create an instance of APIClient

client = APIClient()

tasks = client.tasks.task_urls()
print (tasks) Traceback (most recent call last):
File "get_all_users.py", line 15, in <module>
tasks = client.tasks.task_urls()
AttributeError: 'Tasks' object has no attribute 'task_urls' `

  
  
Posted one year ago

` from clearml.backend_api.session.client import APIClient

Create an instance of APIClient

client = APIClient()

users = client.users.get_all() `
I get

Traceback (most recent call last): File "get_all_users.py", line 13, in <module> users = client.users.get_all() AttributeError: 'APIClient' object has no attribute 'users'
Although,
user = Task._get_default_session().send_request("users", "get_all", json={"id": [user_id]})did the work.

  
  
Posted one year ago

CostlyOstrich36 May I know what are the request params to get task urls, tasks.task_urls()

  
  
Posted one year ago

Thanks SuccessfulKoala55
Also, https://clear.ml/docs/latest/docs/references/api/tasks#post-tasksget_all gives me userID

<tasks.Task: {
"id": "xxx",
"name": "Interactive Session",
"user": "6cfef1d32",
"company": "xxxx",
"type": "application",
"status": "in_progress",
.....

}
I can't find api endpoint to get user name from user_id like "user": "6cfef1d32" above.

  
  
Posted one year ago

Yes, should be

  
  
Posted one year ago

Use users.get_all

  
  
Posted one year ago

SuccessfulKoala55 Thanks. Last one. How do use this task_urls ?

  
  
Posted one year ago