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 There. I'M Following The Training Instructions For Testing Clearml Agent (

BattyLion34 when you are running the script locally, you have this script ( ResNetFineTune.py ) so you can run it without any issue, but when running the agent, the agent clone the repo, create an env and run the script. Now, the issue is that when trying to run the script, from the cloned repo, it can’t find it, because it’s only on your local machine, in the original git repo.

3 years ago
0 How Do I Get Access To

If you are entering a specific task artifact, you’ll get an Artifact object ( trains.binding.artifacts.Artifact )

4 years ago
0 How Do I Get Access To

One of the following objects Numpy.array, pandas.DataFrame, PIL.Image, dict (json), or pathlib2.PathAlso, if you used pickle , the pickle.load return value is returned. and for strings a txt file (as it stored).

4 years ago
0 Hi All, Regarding Python Version (I.E., 3.6 Vs. 3.8), What Is The Best Practice Way Of Specifying Or Changing This For A Job Running On An Agent? I See Some Documentation About Changing The Preferred Version When Running The Agent. Does That Mean I Need T

Hi GleamingGrasshopper63 , can you share how you are running the clearml agent (with venv, docker, if docker, your image?)?
For updating the agent configuration after its started to run, you’ll need to restart the agent 🙂

2 years ago
0 How Do I Get Access To

Hi WackyRabbit7 ,

If you only want to get the artifact object, you can use:

task_artifact = Task.get_task(task_id=<YOUR TASK ID>).artifacts[<YOUR ARTIFACT NAME>].get()

4 years ago
0 Wondering Why My Plots Are Not In Plot Section But Under Debug Section

👍 appreciate if you can open a https://github.com/allegroai/trains/issues so we can consider this for future versions

4 years ago
0 Hi Folks, I Have A Question On Something That It'S Not Clear To Me Reading The Documentation At

Hey SarcasticSquirrel56 ,

are agents needed on the server installation?No, you can have it running on the same machine (there is no limitation about it), but you can run the clearml-agent in every machine and the clearml-server doesn’t need those.

how many agents are recommended?It depends on your needs. Each agent can run a single task each time, so if you have 2 agents running, you can have 2 tasks training in the same time, and N agents will give you N running tasks.

what best practice...

2 years ago
0 Is There An Example (Preferably With Pytorch) That Includes A Validation Split With Tensorboard(X)? The Examples Only Do Train / Test Splits, Which First Do The Whole Train Step, Then Once The Test Step. While The Validate Step Should Be Similar To Test

Hi DefeatedCrab47

If you are referring to this example, examples/frameworks/tensorboardx/pytorch_tensorboardX.py, it does have only test and train steps.

If you like to plot validation together with the train, you can have the same prefix, for example when using writer.add_scalar('<prefix>/Test_Loss', ...), like in this example - https://demoapp.trains.allegro.ai/projects/bb21d73db5634e6d837724366397b6e2/experiments/f46160152ee54ff9863bb2efe554a6b1/output/metrics/scalar

4 years ago
0 Hi, I Was Using The K8S Glue And It Worked Fine On One Project But Didn'T Work On Another. At The Point Just Before A Git Clone Was Executed, I Get The Error

Hi SubstantialElk6 ,

You can use any docker image you have access too.
Can you attach the logs with the error? virtualenv should be install with the clearml-agent

3 years ago
0 Hi, We Have Clearml On K8 Setup. Using The Below, We Run Dynamic Pods On The Cluster.

Hi DeliciousBluewhale87

So now you don’t have any failures but gpu usage issue? How about running the ClearML agent in docker mode? You can choose an Nvidia docker image and all the Cuda installations and configuration will be part of the image.
What do you think?

3 years ago
0 Looking At Clearml-Serving - Two Questions - 1, What’S The Status Of The Project 2. How Does One Say How A Model Is Loaded And Served Etc? For Example, If I Have A Spacy Ner Model, I Need To Specify Some Custom Code Right?

So for adding a model for serve with endpoint you can use

clearml-serving triton --endpoint "<your endpoint>" --model-project "<your project>" --model-name "<your model name>"
when the model is getting updated, is should use the new one

3 years ago
0 Hello, A Question On Using The Aws Autoscaler App In The Saas – Can A Custom Iam Role Be Used For Launching The Machines? I’M Looking At Giving Custom Permissions To The Machine For Checking Out Secrets / Code / Etc.

Regarding this one, as

mention, you can have a full iam role (without any credentials) in higher tiers, in the regular youll need the credentials for the auth using the boto3 commands for spin up, spin down, tags and such apis commands. The app currently is hosted by us, so you iam role won’t be really available

With it the new created instance will have the iam role associate to it too

2 years ago
0 Hi, I See That There Is A New Parameter In Aws Autoscaler:

max_spin_up_time_min - the maximum time for an instance to spin up
max_idle_time_min - the maximum time for an instance to stay up with worker on it (the time the ec2 instance is finished running a task with the agent and still up with an worker running on it listening to the queue)

3 years ago
0 Hi, I Followed The Following Instruction 

Hi PunyBee36 ,

Thanks for reporting this, the log message will be fixed in the next clearml version, will update here about it 🙂

About the running task, I can read in the logs that a new instance was created (i-02fc8...), can you check if you have a running clearml agent on it? if so, the agent will pull the task from the queue, if not, can you check in this instance logs for errors and share?

2 years ago
0 Is There A Way To Do S3 -> S3 Copy While Doing A Dataset? I Don’T Want To Get It To Local From S3 And Then Upload As A Dataset To S3

When uploading the files, hash is being calculated for every entry, and this is done for the local files. so currently clearml-data support local files.

What would you like to do with the dataset? Why not using it directly from S3?

3 years ago
0 Can The

Hi TenseOstrich47 , currently the StorageManager support uploading local files, what do you mean by memory?

3 years ago
0 Hi, Every One, What Is The Algorithm To Schedule A Task After Pulling It From A Queue In Agent? I Am Using Clearml Open Source. Thanks In Advance.

Sure, with clearml and clearml-agent you get autoscaling for your machines (with monitoring) and automation for your tasks that will handle all for you (docker images, manage the credentials …).
There are much more parts in the system, so maybe you can share a use case so I can help you with it?

3 years ago
0 Is There A Way To Run A Pipeline (

basically it run pip freeze in your execution env and create the requirements according to it, without any analysis

3 years ago
0 Hey! Probably Missed Something, But I Recently Upgraded To 1.1.1, And I'Ve Just Noticed That Png Artifacts Are Not Displayed In The Preview. Is This Intentional? Edit: Ah, It Has To Be A

you can this description as the preview, can this help?

task.upload_artifact(name='artifact name', artifact_object=artifact_object, preview="object description")

3 years ago
0 Can The

Hi TenseOstrich47 , the StorageManager does use boto3 for those upload (so if its not supported by boto3, same for StorageManager :/ )
Maybe you can use the 'wait_for_upload' and delete the local file after?

3 years ago
0 Hi, When I Use The Slack Monitoring Service It Creates A Link With

Are you running the services with an agent?

Which version do you use?

3 years ago
Show more results compactanswers