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 I Want To Use The Pipelinecontroller Which Assumes A Task Already Been Executed And As Ready As Template. I Never Executed The Task Before And It Is A Very Long Running Task. Is There A Way To Create The Template Without Executing All The Way Through?

I only want to save it as a template so I can later call it in a pipeline

running with task.execute_remotely() it wont really run the task. it will start it and abort it, so you will have it Aborted , and this is your template task

3 years ago
0 Hi, It Seems That Report_Image Puts The Image Both In Plots And Both In Debug Samples, Why Is That?

If you like, you can disable the auto magical for matplotlib and report manually.

For doing so, pass auto_connect_frameworks={"matplotlib": False} to Task.init .

4 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 …

3 years ago
0 Is There A Recommended Way To Deal With Clearml In Continuous Integration Pipelines? I Have An Integration Test Running In The Ci, But Now It Writes To The Public Demo Server

Hi GreasyPenguin14 ,

You can specify the configuration api section with environment variables, look at https://github.com/allegroai/trains-actions-get-stats for example (just change the TRAINS prefix to CLEARML, e.g. TRAINS_API_ACCESS_KEY -> CLEARML_API_ACCESS_KEY)

3 years ago
0 Hi. One Question Regarding Instantiation Of Tasks. The Docu States That Providing

If this is the case (you have results and you want a new task to connect to each result), you can just clone the base task, update task parameters and enqueue it for execution (similar to https://github.com/allegroai/trains/blob/master/examples/automation/manual_random_param_search_example.py example), can this do the trick?

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

Hi PompousParrot44 ,

Do you use plt.imshow ? If you run this example, https://github.com/allegroai/trains/blob/master/examples/frameworks/matplotlib/matplotlib_example.py , do you get some outputs in the plots section?

4 years 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...

4 years ago
0 Like The Groups And Roles. I Try To Request A Demo But Not Hear Anything Yet

Hi ColorfulRaven45 .

SSO is part of ClearML enterprise (view User Management & Permissions in https://clear.ml/pricing/ ), the enterprise version has full SSO integration. Also support permission, so you can control access and visibility inside the app.

3 years ago
0 Hi , I Have This Use Case.

With this scenario, your data should be updated when running the pipeline

3 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 What Does It Mean To Publish A Model Or A Dataset?

You are definitely right! We will fix this issue, Thanks 🙂

3 years ago
0 Hi, I Have A Question Regarding The New

If you want to get the pipeline task from a pipeline step, try Task.current_task().parent

3 years ago
0 When Using

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

3 years ago
0 Hi Guys, Suppose I Have The Following Script:

Hi GiganticTurtle0 ,

All the packages you are using should be under installed packages section in your task (in the UI). ClearML analyze and the full report should be under this section.

You can add any package you like with Task.add_requirements('tensorflow', '2.4.0') for tensorflow version 2.4.0 (or Task.add_requirements('tensorflow', '') for no limit).

If you dont want the package analyzer, you can configure in your ~/clearml.conf file: ` sdk.development.detect_with_...

3 years ago
0 Another Question, How Can I Close A Task With A Specified Status? I Know I Am Able To Do Task.Close() But This Doesn'T Let Me Control The Task'S Status And I Want To Determine It

ImmensePenguin78 I think you can get it with the APIClient , you can add force to the call:
` from clearml import Task
from clearml.backend_api.session.client import APIClient

api_client = APIClient()
t = Task.init(project_name="Your project", task_name="Your task name")

t.close()
api_client.tasks.failed(t.id, force=True, status_reason="Your status reason", status_message="Your status message") `

3 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

2 years ago
0 When Using

about the error, do you have network manager running?

3 years ago
0 Hi Guys, I Have Data ( For Folder Tree Image Classification) And We Stored That On S3 Bucket Minio Can I Register Dataset To Clearml Without Downloading (Using Storage Manager) Data On S3 Bucket To My Local Then Upload To Clearml?

you can register the links only (no need to download and upload),
clearml-data add --linksfrom CLI, or add_external_files from code:

dataset.add_external_files(source_url=" ")

2 years ago
0 In Relation To Pytorch Lightning V1.X, Usage In Combination With Trains Has Become Much Smoother (Just Pure Tensorboard). However, When Checking The "Configuration" Tab Of An Experiment, It'S Empty. How Do I Get Trains To Log The Hyperparameters? I'Ve Tr

Hi DefeatedCrab47 ,

You can set the HP with a dict, like:

Task.current_task().set_user_properties( { "property_name": {"description": "This is a user property", "value": "property value"}, "another_property_name": {"description": "This is another user property", "value": "another value"}, "yet_another_property_name": "some value" } )or list of dicts, like:

` Task.current_task().set_user_properties(
[
{
"name": "prop...

4 years ago
Show more results compactanswers