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
QuaintJellyfish58
Moderator
37 Questions, 84 Answers
  Active since 10 January 2023
  Last activity 4 months ago

Reputation

0

Badges 1

76 × Eureka!
0 Hey, Is There A Shortcut On The Dataset Sdk To Directly Get The Latest Version Of A Dataset ?

Hi AgitatedDove14 , is the Dataset.get will take all child too?

2 years ago
0 Hi, Is Anyone Can Access

it just solved. Thanks!

one year ago
0 Hi, Can I Do Integrate My Vault With Clearml?

i see,
thanks for clarify. i just want to find other solutions to storing secret value. rightnow i just storing secret value on env in clearml.conf in my workers. but it will complicated if there is new value, i need update workers conf and redeploy workers.

one year ago
0 Hi, Is Anyone Can Access

Hi @<1523701070390366208:profile|CostlyOstrich36> ,
i use vpn and set location in US still cannot access too.
when i set location to Germany, it can access.
any idea to solve this from user side?
image

one year ago
0 Hey Community! Having Repository Cloning Issue Can Anyone Help......

it seems your clearml-agent didn't setup the right git account. are you sure setup on your agent conf?

one year ago
0 Hi, Guys Can I Run A Task In Task? I Have Task, If That Ended, It Will Start To Run Another Task Remotely. Thanks In Advance!

Thanks for response.

from clearml import Task
from clearml.automation import TaskScheduler
from datetime import timedelta, datetime

def my_task():
    task = Task.init(...)
    # do somthinge
    print("do something")
    # sleep 10
    condition = True
    if condition:
        # i want to trigger run another task by 
        # set some config in task, but execute tomorrow/sometime
        # not directly run at the time.
        # here i use
        task_id = task.id 
        task.cl...
10 months ago
0 Hi All, I Am Creating Sub Project, For Experiment, But It Seems There Is

Hi AppetizingMouse58 , this is from My Work View
` # Payload
{"meta":{"id":"4ff606b50768402495674f4a2b37bdf4","trx":"4ff606b50768402495674f4a2b37bdf4","endpoint":{"name":"projects.get_all_ex","requested_version":"2.20","actual_version":"1.0"},"result_code":200,"result_subcode":0,"result_msg":"OK","error_stack":"","error_data":{}},"data":{"projects":[{"id":"75d04598197a445ebef533814022c58d","company":{"id":"d1bd92a3b039400cbafc60a7a5b1e52b"},"user":{"id":"a174c4e36b0446a7b3b5dd1ff5261962"},...

2 years ago
0 Hi Guys, Is There A Way To Timeout (From Clearml) A Task If That Running Too Long?

my case more like there is a task/process that running but somehow its takes too long to completed. it can be because connection issue forgot to put connection timeout, a problem connection database, etc that makes status still running, but its traped in a situation like that.

so i want to force shutdown a task to failed if that happen

one year ago
0 Hi, I Am Try To Use Taskscheduler As Cronjob, I Want My Task Running Every 2.40 Am Utc Everyday,

Hi @<1523701205467926528:profile|AgitatedDove14> , Thanks for rresponse!
this my simple code to test scheduler

import datetime
from clearml.automation import TaskScheduler
  
def test_make():
    print('test running', datetime.datetime.now())

if __name__ == '__main__':
    task_scheduler = TaskScheduler(
        sync_frequency_minutes=30,
        force_create_task_name='controller_feedback',
        force_create_task_project='Automation/Controller',
    )

    print('\n[utc_timestamp]...
one year ago
0 Hi, Is There A Way To Get Clearml.Conf Using Clearml Sdk? Tia

hmm i want to make custom function that need credential registed on clearml.conf, like aws s3.
is clearml-agent have clearml.conf? where the path for that? i just test it, running using clearml-agent, but not found /root/clearml.conf

one year ago
0 Hi. Is There A Way To Make Hyperparameters/Any Part Form Become A Dropdown List When In Draft Mode On Clearml Ui? Like We Want Set Using Ui But Limited Option On Dropdown List.

i am using dictionary, more convinient for me and can categorize each params.
Thanks, hope that feature will ready soon!

2 years ago
0 [Issue With Minio] Hi, I Am Using Clearml=1.8.3, But It Seems Still Have Trouble With Minio Connection.

Hi SmugDolphin23 , i have try 1.8.4rc1, and yeah its working! Thanks!

one year ago
0 Hi Guys, Is There A Way To Timeout (From Clearml) A Task If That Running Too Long?

i see thanks for the answer, i will read that reference.

one year ago
0 Hi All, I Am Creating Sub Project, For Experiment, But It Seems There Is

AgitatedDove14 , yes. i tried 3 times, and it always happen.

2 years ago
0 Hi All, I Am Creating Sub Project, For Experiment, But It Seems There Is

`

payload

{"id":["75d04598197a445ebef533814022c58d"],"include_stats":true,"check_own_contents":true,"active_users":["a174c4e36b0446a7b3b5dd1ff5261962"],"search_hidden":true}

Response

{"meta":{"id":"8d18a89599db4d899ab40959a39970b3","trx":"8d18a89599db4d899ab40959a39970b3","endpoint":{"name":"projects.get_all_ex","requested_version":"2.20","actual_version":"1.0"},"result_code":200,"result_subcode":0,"result_msg":"OK","error_stack":"","error_data":{}},"data":{"projects":[{"id":"75d0459819...

2 years ago
0 Hi Guys, I Have Data ( For Folder Tree Image Classification) And We Stored That On S3 Bucket Minio Can I Register Dataset To Clearml Without Downloading (Using Storage Manager) Data On S3 Bucket To My Local Then Upload To Clearml?

yes, so far i know, if we want to upload dataset on clearml, we need provide local_path to data, then clearml will upload to the platform.

my data not on local, but s3 bucket.
is there a way to point s3 url ? my currently workflow is download my data from s3 bucket to local, then upload to clearml.

2 years ago
0 Hi Guys, Is There Cli To Download Artifacs Based On Id Artifacs?

i want to download model before i run the my inference code. i can actually make simple script using cleaml-sdk before that, but i just look for CLI based solution.

one year ago
0 Hi All, I Am Creating Sub Project, For Experiment, But It Seems There Is

Hi AppetizingMouse58 , this is when in Team's Work View :

`

Payload

{"id":["75d04598197a445ebef533814022c58d"],"include_stats":true,"check_own_contents":true,"search_hidden":true}

Response

{"meta":{"id":"c4ee9cb1c4594040bd0b44499d5e9970","trx":"c4ee9cb1c4594040bd0b44499d5e9970","endpoint":{"name":"projects.get_all_ex","requested_version":"2.20","actual_version":"1.0"},"result_code":200,"result_subcode":0,"result_msg":"OK","error_stack":"","error_data":{}},"data":{"projects":[{"id":"7...

2 years ago
Show more results compactanswers