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
TimelyPenguin76
Administrator Moderator
0 Questions, 711 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 Hi, I Would Like To Configure Clearml-Server To Connect To An S3 Bucket In Order To Store Artefacts - I'Ve Taken A Look On This Page

Hi @<1687643893996195840:profile|RoundCat60>

I think the best way will be to configure a default output_uri to be used by all tasks:  None , under default_output_uri just write your bucket path ( None ).
When using S3/google storage/azure, you will also need to add your credentials in this section - None (s3 in ...

3 years ago
0 Hi, I Would Like To Configure Clearml-Server To Connect To An S3 Bucket In Order To Store Artefacts - I'Ve Taken A Look On This Page

Same credentials configuration for the ClearML-Agent.
Notice that when a task is created, in the UI, under EXECUTION tab, you can find (and change if you like) the output destination.

3 years ago
0 Trains Seems To Fail To Capture My Conda Environment, Any Idea? Os: Window 10

Hi EnviousStarfish54 ,

Do you get any message regarding the repository detection at the end of the task? Does it log Waiting for repository detection and full package requirement analysis ?

3 years ago
0 Trains Seems To Fail To Capture My Conda Environment, Any Idea? Os: Window 10

Do you get the repository detection or this section is empty too?

3 years ago
0 Is It Possible To Write Text File And See It In Results Of The Experiment? I Want To Use It To Version Data As In Keeping A Track Of What Images Have Been Trained On. Or Is There A Better Way Of Data Versioning In Clearml?

Hi VexedCat68

Is it possible to write text file and see it in results of the experiment?

You can upload any file as an artifact to your task, try:

task.upload_artifact(name="results", artifact_object="text_file.txt")

I want to use it to version data as in keeping a track of what images have been trained on. Or is there a better way of data versioning in ClearML?

You can use https://clear.ml/docs/latest/docs/clearml_data/ for making the data accessible from every machine...

2 years ago
0 Hey Guys!

You can always clone a “template” task and change everything (it will be on draft mode), what is you use case? maybe we already have a solution for it

3 years ago
0 Hi, I Tried To Provide Docker Image From Pipeline Controller Task To Step Task. Before Pipe.Add_Step(), I Created The Task:

From the ClearML UI you can just change the value under BASE DOCKER IMAGE section to your image

3 years ago
0 Hi, I Am Running Several Python Scripts But All For The Same Project/Task. Is It Possible To Task.Init To Existing Running/Completed Task And Adding On The Results?

Hi SubstantialElk6

If you like a new task, you can clone as HugePelican43 suggested.
You can also continue reporting to your task with continue_last_task parameter in your Task.init call:

from clearml import Task task = Task.init(project_name="YOUR PROJECT NAME", task_name="YOUR TASK NAME", continue_last_task=True)You also can specify the task id to continue (from the docs - https://allegro.ai/clearml/docs/rst/references/clearml_python_ref/task_module/task_task.html?hig...

3 years ago
0 Hi, We Are Trying To Understand When The Auto-Logging Parameters Configuration. From The

Hi OutrageousSheep60 , I think the connect_configuration is your solution for this one (or connect)

2 years ago
0 Hi, I'M Using Clearml Python Package On Sagemaker Notebook Instance. If I Want To Edit The Clearml.Conf On The Notebook Instance, How Could I Do That?

Hi SquareFish25 ,

Which section would you like to modify? Can env vars do the trick? e.g.

os.environ["CLEARML_API_HOST"] = "***" os.environ["CLEARML_WEB_HOST"] = "***" os.environ["CLEARML_FILES_HOST"] = "***" os.environ["CLEARML_API_ACCESS_KEY"] = "***" os.environ["CLEARML_API_SECRET_KEY"] = "***"

3 years ago
0 Hi, I'M Using Clearml Python Package On Sagemaker Notebook Instance. If I Want To Edit The Clearml.Conf On The Notebook Instance, How Could I Do That?

Hi SquareFish25 , what about AWS_DEFAULT_REGION , did you add it too? Can you try with it if not?
What version of ClearML are you using?

3 years ago
0 Hi, I'M Using Clearml Python Package On Sagemaker Notebook Instance. If I Want To Edit The Clearml.Conf On The Notebook Instance, How Could I Do That?

Hi SquareFish25 ,

I tried the follow and succeed to upload the file:

` import os

os.environ['AWS_ACCESS_KEY_ID'] = "***"
os.environ['AWS_SECRET_ACCESS_KEY'] = "***"
os.environ['AWS_DEFAULT_REGION'] = "***"

from clearml import StorageManager
remote_file = StorageManager.upload_file(<file to upload>, 's3://bucket_name/inner_folder/file_name') `Can you try it and update if it works for you?

3 years ago
0 Hi, I'M Using Clearml Python Package On Sagemaker Notebook Instance. If I Want To Edit The Clearml.Conf On The Notebook Instance, How Could I Do That?

SquareFish25 do you have a way trying with access and secret without token? just for the checking

3 years ago
3 years ago
0 Hi, I Have Started To Receive The Following Error Message:

ArrogantBlackbird16 can you send a toy example so I can reproduce it my side?

2 years ago
0 Hey All, I'M Having A Problem Integrating Clearml In My Training. ---------------------------------------------------------------------------------------------- First, I'M Getting A Warning: Clearml Monitor: Could Not Detect Iteration Reporting, Falling B

Hi MotionlessMonkey27 ,

first, I’m getting a warning:
ClearML Monitor: Could not detect iteration reporting, falling back to iterations as seconds-from-start

This simply indicated your task did not start reporting metrics to the server yet. Once reporting started, it will go back to iterations-based.

Also, ClearML is not detecting the scalars, which are being logged as follows:

tf.summary.image(‘output’, output_image, step=self._optimizer.iterations.numpy())
or
for key, value in...

2 years ago
0 Hey, I Want To Upload Text Files In The Allegro, And Store Them As An Artifact. How Can We Do That?

Hi MotionlessSeagull22 ,

You can upload files as artifacts with
task.upload_artifact('text file', artifact_object=<path to your file>)You can find more artifacts examples in https://github.com/allegroai/trains/blob/master/examples/reporting/artifacts.py

3 years ago
0 Hi, I Am Getting This Error When Using The Aws Auto_Scaler Service (With The Pro Version):

Hi SmugTurtle78 , can you share you configuration? (without the secrets)

  • are you working vpc? did you try configure only one of the params?
one year ago
0 Any Plans To Add Support For Multiindex Tables? That Comma-Separation Feels A Bit Odd. (Also This Shows Up In

The 

report_scalar

 feature creates a plot of a single data point (or single iteration).

UnevenDolphin73 thats how I would use it. with it you can compare between tasks and compare the results. You can also add it to the project view and filter with it too:

2 years ago
0 Hi. Question About Dataset Upload Errors: When Uploading A

Hi PanickyMoth78 ,

Can you try with pip install clearml==1.8.1rc0 ? it should include a fix for this issue

one year ago
Show more results compactanswers