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, 707 Answers
  Active since 10 January 2023
  Last activity 8 months ago

Reputation

0
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")

2 years ago
0 Looks Like The Website Is Down. When I Try To Create Task, I Get The Following Error

TrickyFish46 I tried https://clear.ml/ and http://app.clear.ml and both works for me, which one is causing you the issues?

one year ago
0 Hi, I Encounter A Weird Behavior: I Have A Task A That Schedules A Task B. Task B Is Executed On An Agent, But With An Old Commit

How did you create task B? cloned from other task?

The agent will run the task according to the commit in the execution tab (you can choose commit, branch or tag)

3 years ago
0 Quick Qn, When Using The Clearml-Task, How To Specify The Output_Uri.

Hi DeliciousBluewhale87 ,
You can try to configure the files server in your ~/clearml.conf file. could this work?

2 years ago
0 Hi, I Was Getting A Really Weird Error Due To Mismatch On The Versions Between The Installed Libraries In My Environment And The Ones Ran In The Node (I Manually Changed The Installed Packages And Everything Worked). How Can I Force Trains To Use Exactly

Hi GrievingTurkey78

If you like to have the same environment in trains-agent , you can use on your local machine the detect_with_pip_freeze option, on you ~/trains.conf file.
Just change detect_with_pip_freeze: true ( https://github.com/allegroai/trains/blob/master/docs/trains.conf#L168 is an example)

2 years ago
0 Hey I Use The Clearml-Agent. In The Code I Have The Two Lines I Need. When I Run The Program It Shows That My Program Is Running On The Demo Trains Page. But I Want It To Run On My Own Server. I Tried To Register And Then Use The Following Page:

Hi UnsightlySeagull42 ,

The clearml-agent use the credentials from your ~/clearml.conf file, if you changed those, you will need to re-run the clearml-agent.
Can you verify that your clearml-agent is running with the credentials of your https://app.community.clear.ml/dashboard ? if so, can you re-run it with config-file option?

clearml-agent --config-file <path to your clearml.conf file> daemon …

2 years ago
0 Hey I Use The Clearml-Agent. In The Code I Have The Two Lines I Need. When I Run The Program It Shows That My Program Is Running On The Demo Trains Page. But I Want It To Run On My Own Server. I Tried To Register And Then Use The Following Page:

how can i check if it is loaded?

When a task is starting, the configuration will be print first

it worked with trains-agent init

Do you have 2 configuration files? ~/trains.conf and ~/clearml.conf ?

2 years ago
0 Hey I Use The Clearml-Agent. In The Code I Have The Two Lines I Need. When I Run The Program It Shows That My Program Is Running On The Demo Trains Page. But I Want It To Run On My Own Server. I Tried To Register And Then Use The Following Page:

👍

Can you upgrade from trains to ClearML ?

pip install clearml for installing it, and from your code change
from trains import task to from clearml import task

2 years ago
0 Hi, I Encounter A Weird Behavior: I Have A Task A That Schedules A Task B. Task B Is Executed On An Agent, But With An Old Commit

Great 🙂

If you do wanna change the commit/branch/tag, you can change it from the data.script section in the cloned_task object

3 years ago
0 Looks Like The Website Is Down. When I Try To Create Task, I Get The Following Error

Thanks ImpressionableAlligator9 and MagnificentWorm7 for reporting this, I will double check it

one year ago
0 Hi All, Is There Documentation \ Example Describing How Does Clearml Works With Hydra?

 thanks for the answer, so for example (to make sure I understand) with the example you gave above when I’ll print the config I’ll see the new edited parameters?

Correct

What about the second part of the question, would it be parsed according to the type hinting?

It should

2 years ago
0 Can I Upload Files That Are Created On The Remote Machine? So Far It Just Get Stuck (The Files Are Small 10 Kb Or So) I Have A Script That Creates A Folder With Some Files, Some Of Them I Want To Keep, So I Tried Uploading To Storage, No Luck.

Hi GleamingGiraffe20 ,

The example in the documentation is missing a filename at the end of remote URL (an error I gotten locally when I tried to upload).

In https://allegro.ai/docs/examples/examples_storagehelper/#uploading-a-file example, the filename is /mnt/data/also_file.ext , did I miss the example you talked about? If so, can you send a link to it?

When using a trains task to track my run AND changing my scripts output directory, I get: ‘TRAINS Monitor: Could not d...

2 years ago
0 Can I Upload Files That Are Created On The Remote Machine? So Far It Just Get Stuck (The Files Are Small 10 Kb Or So) I Have A Script That Creates A Folder With Some Files, Some Of Them I Want To Keep, So I Tried Uploading To Storage, No Luck.

For 'TRAINS Monitor: Could not detect iteration reporting, falling back to iterations as seconds-from-start' message - the iteration reporting is automatically detected if you are using tensorboard , matplotlib , or explicitly with trains.Logger
Assuming there were no reports, so the monitoring falls back to report every 30 seconds.

Thanks for the examples, will try to reproduce it now.

2 years ago
0 Hi! I’M Running An Experiment As Follows:

You have to define it, but this can be done really quickly under the task, adding
task.set_base_docker(docker_image="your docker image", docker_arguments='-e CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL=1')for example, or you can also add it to the agent’s configuration if you want to set this always with agent.default_docker.arguments https://clear.ml/docs/latest/docs/configs/clearml_conf/#agentdefault_docker

one year ago
0 Hi! I’M Running An Experiment As Follows:

Hi AbruptCow41 ,

also, is there a way for it to not install the requirements, and simply run the task?

Yes, you can specify the env you like to use and disable the requirements installation:
CLEARML_AGENT_SKIP_PIP_VENV_INSTALL env var to define the python environment you are working with
CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL to skip the installations

how do I mount my local ssh folder into

/root/.ssh/

docker when running clearml-agent?

this shou...

one year ago
0 Hi All, Two Questions: 1) Can You Add, After The Task Has Completed, Some Free Text To Write Down My Conclusion Of This Run? 2) I'M Having Troubles Copying The Config File From The Ui. A Simple Copy Past That'S All. When I Try To Mark The Whole Config

Hi SoggyDog52

  1. can you add, after the task has completed, some free text to write down my conclusion of this run?

What kind of information you like to add? You can add a tag to a task. If you like a free text, you can change the description part in the INFO tab. Can this do the trick?

  1. I’m having troubles copying the config file from the UI. A simple copy past that’s all. When I try to mark the whole config with the courser it manege to catch just some part.

Do you have...

2 years ago
one year ago
Show more results compactanswers