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 How Is The New Gui "Setup Shell Script" Option Supposed To Be Used? I Would Like To Add An Apt Install Command To One Of My Tasks, And From Reading The Related Github Issues I Presumed I Could Just Type Those In To This New Textbox In The Tast Exectution-

Hi ThickDove42 ,

The SETUP SHELL SCRIPT is the bash script to run at the beginning of the docker before launching the Task itself.

You can just try edit it, for example:

apt update apt-get install -y gcc

4 years ago
0 How Come I Use

Hi WackyRabbit7 ,

not sure I get it, you dont see the report in the UI?

4 years ago
0 How Come I Use

try report_interactive=False

4 years ago
0 Is There A Way To Interface With Clearml Agent (Cli?) To Handle Model Repositories And Data Versioning (But So, Not Experimentation, Tight Integration, Pipelining, Etc)?

Hi UnevenDolphin73

I’m not sure I understand - can you share the use case you are looking for? You want to interact with the ClearML-agent?

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'] = "***"

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 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 Quick Question About The Cleanup Service: One Argument Is

Hi ElegantCoyote26 ,

` - cleanup_period_in_days (float): The time period between cleanups. Default: 1.

  • run_as_service (bool): The script will be execute remotely (Default queue: "services"). Default: True. so run_as_service will not run the script locally on your machine but just enqueue the script to the services ` queue (you should have clearml-agent in services mode listening to this queue, and the agent will run this service)
4 years ago
0 Hi, I’M Trying To Run Some Hog + Svm Classifier With

Hi SpotlessLeopard9 ,

You can disable the joblib connection with ClearML in your Task.init call (need to disable scikit ):

task = Task.init(project_name='example project', task_name='task without joblib binding', auto_connect_frameworks={'scikit': False})

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

4 years ago
4 years ago
0 Hey, How Can I Point Trains To Look For It'S Train.Conf File In A Different Path Than ~/Trains.Conf?

For the trains-agent , you have an option to specify the trains.conf file you want it to run with. just start the trains-agent with trains-agent --config ~/trains_agent.conf (where ~/trains_agent.conf is your ~/trains.conf file for the agent run).

how could I configure this in the docker compose?

Do you mean to env vars?

4 years ago
0 Autoscaler From Saas (Pro Version). I Attempted To Use The Autoscaler “Application” From Clearml Ui. Here Is What I Get In The Logs Of The Autoscaler Screen Itself (Consistent):

Hi RoughTiger69 , when you click on the app “3 dots” link, you can open the configuration and the View details button will open you the original task.

it has like 10 fields of json configurations

under configuration objects, you can find the pipeline configuration.

CostlyOstrich36 did you succeed to reproduce such issue? RoughTiger69 have you made any changes in your workspace (share with someone? remove sharing?)?

3 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?

5 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 🙂

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 Using

about the error, do you have network manager running?

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

It doesn’t, but if your issue is

since the task requirements is not logged correctly and then when it is cloned it fails

this should log the same requirements as you have in your machine, without any analysis. with the same environment the agent shouldn’t have this issue

4 years ago
0 Using

WackyRabbit7 can you try upload the artifact with wait_on_upload=True ?

3 years ago
Show more results compactanswers