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
4 years ago
0 Hi Guys, I Had Several Times Now The Following Errors Poping In Agents While Executing A Task:

From the UI, clone the task you have, and after hit the edit in the uncommitted changes section (if you can send this file it could be great 🙂 )

4 years ago
0 Hi, Folks !! I Have Two Questions On Pytorch Lightning Example In Particular Logging. The Comment Says “Connecting Clearml With The Current Process, From Here On Everything Is Logged Automatically.” Q1: Does This Comment Mean That

Hi EcstaticBaldeagle77 ,

The comment says “Connecting ClearML with the current process, from here on everything is logged automatically.”

this comment means that every framework is now patched and will report to ClearML too, this can be configure (per task) with auto_connect_frameworks in your Task.init call (example can be found here - https://clear.ml/docs/latest/docs/faq#experiments )

Q2: Can I dump this logged keys & values as local files ? (edited)

Not sure ...

3 years ago
0 Hi Everybody. I Have Setup Clearml With Some Agents That Execute Experiments In Docker Mode. This Is Working Perfectly. I Am Now Also Trying To Use The Pycharm Plugin To Debug An Issue. Basically I Am Confused If "Remote Debugging" Should Work / Kick In

Hi ElegantDeer55 ,

Are you referring to https://github.com/allegroai/trains-pycharm-plugin ? If so, it should sync you .git folder to the remote machine so the task will log the git.

Basically I am confused if “remote debugging” should work / kick in automatically when running in docker mode and starting a task like this:

 from trains import Task
task = Task.init(project_name=“my project”, task_name=“my task”)
task.execute_remotely()

When you are running this code from you P...

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

They should be copied, I just want to verify they are.

If so, can you send the logs of the failed task?

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

4 years ago
0 When I Do Task.Init() And Then A Execute_Remotely(), The Task Is Being Aborted Rather Than Be In Draft. Am I Missing Something?

TrickySheep9 you can also add the queue to execute this task:

task.execute_remotely(queue_name="default")So it will enqueue it too 🙂

3 years ago
0 Hi, I Am Trying To Use Agent With A Sample, Very Simple Task. But It Stucks And Task Does Not Finish. In Ui In Console I See What I Pasted On Image. Do You Know What I Might Be Doing Wrong? Agent Is Run In Virtual Env Mode

btw. why do I need to give my git name/pass to run it if I serve an agent from local?

The main idea is that you can run the agent in any machine (local, cloud) and all should be done out of the box.

If your code is running as part of a git repository, the clearml agent will have to clone it, and for doing so it will use credentials.
Git name and pass are one way for it, but you can also use ssh - if you dont have the git name and password in the configuration, the clearml-agent will t...

2 years ago
0 I Have To Say I'M Totally Confused By The Pipeline I Want To Execute The Pipeline On My Local Computer. I Followed

btw my site packages is false - should it be true? You pasted that but I’m not sure what it should be, in the paste is false but you are asking about true

false by default, when you change it to true it should use the system packages, do you have this package install in the system? what do you have under installed packages for this task?

3 years ago
0 Is It Possible To View The Actual Code Of A Task? As In The Script That Created The Task?

In that case, you will get only the changes, but, you can upload the script as an artifact, can this do the trick?

4 years ago
0 Hello, I Am Starting To Use Clearml And Would Like To Deactivate The Detection Of A Git Repository. The Reason Is That The Repository Is Currently Only On My Local Machine And There Is No Remote To Check Out On The Worker Machines. The Error I Am Getting

or do you mean this by your note? i.e. leaving the execution parts empty.

yep 🙂

Currently, when ClearML detect a .git file, it will store your running script as part of your git repo. The workaround to store the whole script as a standalone is just like you did (or to run it outside of the repo).
We currently don’t have such an option to store the script as a standalone, but this could be a useful feature.

Can you add a new  https://github.com/allegroai/clearml/issues  issue...

3 years ago
0 Hi, I'M Trying To Understand If Clearml Supports My Usecase: I Generate My Own Data (Problem-Specific) And Generation Process Is Uploading A Parquet Dataset (In Fact, Parquet Contains Multiple Files Obv.) To S3. Is There A Way To "Register" The Dataset In

Hi GreasyWalrus57 , sorry but didn’t get that.

You want to register the data? you can do it with clearml-data and then use this task to connect between tasks and data

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

where task is the value return from your Task.init call,

task = Task.init(project_name=<YOUR PROJECT NAME>, task_name=<YOUR TASK NAME>)

4 years ago
0 Is There A Way To Programatically Define Api_Host/Web_Host?

Hi EnviousStarfish54 ,

You can add environment vars in you code, and trains will use those (no configuration file is needed)

import os os.environ["TRAINS_API_HOST"] = "YOUR API HOST " os.environ["TRAINS_WEB_HOST"] = "YOUR WEB HOST " os.environ["TRAINS_FILES_HOST"] = "YOUR FILES HOST "Can this do the trick?

4 years ago
Show more results compactanswers