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 2 years ago

Reputation

0
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:

3 years ago
0 Is There Some

Hi ReassuredTiger98 ,

try:
` from clearml.config import running_remotely

if running_remotely():
... `

3 years ago
0 Hi, I Started My Agent Using. Clearml-Agent Daemon --Gpus 0 --Queue Gpu --Docker --Foreground, With The Following Parameters In Clearml.Conf.

you need to run it, but not actually execute it. You can execute it on the ClearML agent with task.execute_remotely(queue_name='YOUR QUEUE NAME', exit_process=True) .

with this, the task wont actually run from your local machine but just register in the ClearML app and will run with the ClearML agent listening to 'YOUR QUEUE NAME' .

3 years ago
0 Hi, I Started My Agent Using. Clearml-Agent Daemon --Gpus 0 --Queue Gpu --Docker --Foreground, With The Following Parameters In Clearml.Conf.

are you referring to the docker image? The same as before with task.set_base_docker("dockerrepo/mydocker:custom --env GIT_SSL_NO_VERIFY=true")

3 years ago
0 When Using

yes, it will just run as a python process

3 years ago
0 Hi, Is There A Way To Get Some Stats About The Use Of Workers? I Would Like To Know, Over The Past 3 Months:

Hi JitteryCoyote63 ,

You can get some stats (for the last month) under the workers section in your app, clicking a specific worker will give you some more options
Those doesn’t includes stats per training, but per worker

3 years ago
0 Hi, I Started My Agent Using. Clearml-Agent Daemon --Gpus 0 --Queue Gpu --Docker --Foreground, With The Following Parameters In Clearml.Conf.

I can help you with that 🙂

task.set_base_docker("dockerrepo/mydocker:custom --env GIT_SSL_NO_VERIFY=true")

3 years ago
4 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?

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”)

Notice the max preview for an artifact is 65k, and it is suggested to have one file like this (and not for every iteration for example)

3 years ago
0 When Uploading An Artifact, Can I List It In Some Grouping (Like With Parameters, Having E.G.

not sure about the Other , but maybe adding some metadata to the artifact can do the trick?

You can get all the artifacts with task.artifacts and you can go over it and filter with the metadata, wdyt?

3 years ago
0 Hi, I'M Trying Out The

Hi CleanPigeon16 .

Do you get anything in the UI regarding this failure (in the RESULTS -> CONSOLE section)?

4 years ago
4 years ago
0 When Using

Hi UnevenDolphin73 , what OS are you using? what is the clearml version?

3 years ago
0 Hi, I Started My Agent Using. Clearml-Agent Daemon --Gpus 0 --Queue Gpu --Docker --Foreground, With The Following Parameters In Clearml.Conf.

when you do git diff on your terminal about this git repo, do you get the requirements changes too? or the same as in
Applying uncommitted changes Executing: ('git', 'apply', '--unidiff-zero'): b"<stdin>:11: trailing whitespace.\n task = Task.init(project_name='MNIST', \n<stdin>:12: trailing whitespace.\n task_name='Pytorch Standard', \nwarning: 2 lines add whitespace errors.\n"?

3 years ago
0 Hi Trains Community - Question: I Am Using 

Hi MinuteWalrus85 ,

Do you have tensorboard installed too?

I installed trains , fastai , tensorboard and tensorboardx and run a simple example, can be view in this link -
https://demoapp.trains.allegro.ai/projects/bf5c5ffa40304b2dbef7bfcf915a7496/experiments/e0b68d0fe80a4ff6be332690c0d968be/execution

4 years ago
0 Hi Trains Community - Question: I Am Using 

MinuteWalrus85 checking it

4 years ago
0 Hi, I Am Trying To Use Clearml-Data To Upload My Data To S3, Which Is Password Protected. How Should I Indicate The Credentials After I Set --Storage S3://.... ?

Hi SubstantialElk6 ,

You can configuration S3 credentials on your ~/clearml.conf file, or with environment variables:
os.environ['AWS_ACCESS_KEY_ID'] ="***" os.environ['AWS_SECRET_ACCESS_KEY'] = "***" os.environ['AWS_DEFAULT_REGION'] = "***"

3 years ago
0 Hi, I'M Running The Following And Encountering Some Ssl Errors.

Hi SubstantialElk6 ,

Which clearml version did you use? and which python version?
Can you write a small how to reproduce this issue?

3 years ago
Show more results compactanswers