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
HurtStarfish47
Moderator
10 Questions, 24 Answers
  Active since 09 December 2023
  Last activity 16 days ago

Reputation

0

Badges 1

24 × Eureka!
0 Votes
7 Answers
584 Views
0 Votes 7 Answers 584 Views
8 months ago
0 Votes
3 Answers
635 Views
0 Votes 3 Answers 635 Views
Hello, I am trying to use the SDK function dataset.sync_folder , but it doesn't look like it works. I see Add image.jpg being printed for all my data items, ...
11 months ago
0 Votes
4 Answers
613 Views
0 Votes 4 Answers 613 Views
11 months ago
0 Votes
1 Answers
335 Views
0 Votes 1 Answers 335 Views
I am having trouble understanding how dataset caching works with clearml-data . I am using a clearml-task that runs python code to get a dataset from clearml...
4 months ago
0 Votes
1 Answers
345 Views
0 Votes 1 Answers 345 Views
Hello, is there a function in the SDK to list all projects ? Also, are projects shared between Datasets and Experiments ?
5 months ago
0 Votes
8 Answers
603 Views
0 Votes 8 Answers 603 Views
Hello, I having been exhausting the metrics quota way to fast for the current use that I am making of clearml. Is the quota cumulative ? i.e. do we get 1G pe...
8 months ago
0 Votes
10 Answers
403 Views
0 Votes 10 Answers 403 Views
Hi, I am running a script very similar to the one in this example , except that the data parameter for training is taken from a clearml.Dataset.get . I can c...
5 months ago
0 Votes
7 Answers
475 Views
0 Votes 7 Answers 475 Views
I recently upgraded my clearml version and here are some questions that I have: - Is there an autoscaler available for Azure ? - I'm interested in the clearm...
7 months ago
0 Votes
2 Answers
656 Views
0 Votes 2 Answers 656 Views
Hello 🙂 Would it be possible to have a bit more information about the different states of a dataset ? Specifically I am not clear on the difference between ...
11 months ago
0 Votes
7 Answers
42 Views
0 Votes 7 Answers 42 Views
Hello, I am using the clearml integration with ultralytics. I have very simple code task = Task.init(project_name="YOLO", task_name=ds_name, output_uri=" ") ...
19 days ago
0 Hello, I Am Using The Clearml Integration With Ultralytics. I Have Very Simple Code

I don't, Ultralytics just output a model in project/weights/best.pt. They don't expose a way to change that value. I'm happy to rename that file manually from the code, but likely it was already uploaded by ClearML automatically

16 days ago
0 Hello, I Am Using The Clearml Integration With Ultralytics. I Have Very Simple Code

Hi @<1744891825086271488:profile|RoundElephant20> , thanks for the help. By uploading with StorageManager, will the model be registered in the ClearML Artifact section ?

16 days ago
0 I Recently Upgraded My Clearml Version And Here Are Some Questions That I Have:

ah, okay that make sense, I'll look more into the difference between pro / enterprise. Thanks for the info !

7 months ago
0 I Recently Upgraded My Clearml Version And Here Are Some Questions That I Have:

also, I see that clearml-serving support pytorch, is there any chance for support for TensorRT ?

7 months ago
0 I Recently Upgraded My Clearml Version And Here Are Some Questions That I Have:

I mean I'm hosting it myself, it's on app.clear.ml

7 months ago
0 Hello

okay ! Right now in my workflow, I have upload, finalize and publish all happening one after the other without extra logic. From my tests it also looks like I can use a finalized but unpublished dataset without any problem. Should I be handling this differently ?

11 months ago
0 Hello, I Am Trying To Use The Sdk Function

Oh, wow for some reason I thought I read somewhere in the documentation that the sync was taking care of upload and finalize. Or maybe that was for the CLI ? Anyway that's what I was missing, thank you !

11 months ago
0 Hello, I Having Been Exhausting The Metrics Quota Way To Fast For The Current Use That I Am Making Of Clearml. Is The Quota Cumulative ? I.E. Do We Get 1G Per Month ? I Am Concerned Because If We Upgrade And Need To Pay

@<1537605940121964544:profile|EnthusiasticShrimp49> A follow up question about metrics - My pytorch (lightning) experiments are logging to tensorboard and ClearML is automatically picking this up and uploading scalars and debug_images. If I use the set_default_upload_destination that you mentionned, would that still properly use my URI even though I am not calling Logger.current_logger().report_image directly ?

Also, I reset than deleted ~80% of the experiment that I had 2 days ago...

8 months ago
0 Hello, I Having Been Exhausting The Metrics Quota Way To Fast For The Current Use That I Am Making Of Clearml. Is The Quota Cumulative ? I.E. Do We Get 1G Per Month ? I Am Concerned Because If We Upgrade And Need To Pay

No ! The way I delete those is like so:
Experiment view -> Reset (one or more) experiment -> expriment is now in draft
Archive experiment
Open archive -> Delete

I get no feedback at all from the operation, but I can see the experiments are no longer available on clearml

8 months ago
0 Hello, I Having Been Exhausting The Metrics Quota Way To Fast For The Current Use That I Am Making Of Clearml. Is The Quota Cumulative ? I.E. Do We Get 1G Per Month ? I Am Concerned Because If We Upgrade And Need To Pay

Thanks, that is exactly the kind of info I was looking for ! If debug images are counting in the metrics quota that would explain how we reached the limit so quickly.

8 months ago
0 Hello ! I Have Been Using Clearml To Log My Pytorch Experiments, And Now I Would Like To Try To Also Use The Clearml Agent To Execute This Job Remotely. From The Doc, I Understand That The Main Configuration For This Is To Execute The Task Locally, Then C

okay cool, I'm currently trying to migrate our stack to run from the git repository and using ClearML Datasets. I am still having an issue with relative imports in python, we were previously modifying PYTHONPATH in the container, but now I need to modify it manually on the host. I saw there is some documentation about that here , but I'm not sure I understand that correctly since it do...

11 months ago
0 I Recently Upgraded My Clearml Version And Here Are Some Questions That I Have:

Thanks for the reply ! I am using the enterprise version, do you have a link to some docs for the autoscaler ? On the orchestration tab I can see AWS and GCP but not Azure. (also, I was previously able to see Clearml GPUs, but it looks like they're not available anymore ?)

7 months ago
0 Hi, I Am Running A Script Very Similar To The One In

For more info, I am using jsonargparse to expose my params to clearml, but it looks like it's also picking up the params directly from YOLO

5 months ago
0 Hi, I Am Running A Script Very Similar To The One In

Hi @<1523701070390366208:profile|CostlyOstrich36> , Here's sample code:

from ultralytics import YOLO
from clearml import Task, Dataset
from jsonargparse import CLI

def train_yolo(ds_name: str=None):
    dataset_path = Dataset.get(dataset_name=ds_name).get_local_copy() 
    task = Task.current_task()
    
    if task == None:
        task = Task.init(project_name="YOLO", task_name=ds_name)
    
    model = YOLO("yolov8n")
    model.train(data=dataset_path)
    
if __name__ == "__main_...
5 months ago
0 Hi, I Am Running A Script Very Similar To The One In

okay I'll try that. Although I am using parameters from the argparser to set the task name and project. Can I init with dummy values and update those after ?

5 months ago
0 Hi, I Am Running A Script Very Similar To The One In

okay, and after I can use something like task.set_name("args.ds_name") ?

5 months ago
0 Hello, I Have Been Starting To Test And Integrate Clearml Into Our Stack And I Like It. I Started Adding People To My Workspace To Share Datasets And Experiments, But It Seems They Don'T Have Access Directly, They Need To Use Stuff From My Personal Worksp

That's correct, I'm on the community server for now. What about for the SDK and CLI ? If they have their own credentials, can they also use clearml-data and clearml.Dataset.get() to access my dataset ?
It feels a bit off at the moment to have all the pipelines / tasks / datasets that we will use under "Anthony Courchesne's Workspace" (even though I saw I can rename it)

8 months ago