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, I Have A Question Regarding The New

You can always get the running task (the pipeline in your case) with Task.current_task().task_id

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

If run_as_service is False , the script will start running on your machine, once you will clone and enqueue it, it will run twice (on your machine and by clearml-agent)

i’m guessing the cleanup_period_in_days can only actually run every day or whatever if the script is enqueued to 

services

you can change this value if you like (e.g. 0.5 for every 12 hours)

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

Not sure getting that, if you are loading the last dataset task in your experiment task code, it should take the most updated one.

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

Not in your current environment, in the one the clearml-agent creates. In the installed packages you have trains==0.16.4 , so I guess you are using it in your code (if not, you can check in your base task, under installed package, the imports analysis and get the information about where this import is coming from)

About the import issue, did you try adding the missing package and re run the task?

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

👍

I can not see google package, can you try clone and add it manually? You can always add any package you like to any task with Task.add_requirements('package name', 'package version') ,
Do you have a toy example so I can reproduce it my side (using google.cloud but package is not listed in task)?

4 years ago
0 Hi, I'M Using Clearml Python Package On Sagemaker Notebook Instance. If I Want To Edit The Clearml.Conf On The Notebook Instance, How Could I Do That?

SquareFish25 do you have a way trying with access and secret without token? just for the checking

4 years ago
0 Hi Clm Community, I Am Having An Issue With A Private Package Install When Using Clearml-Agent By Env (Not Docker). Things I Have Tried: Adding The Package Repository To "Extra_Index_Url" Adding The Conda Env To "Python_Binary" Listing The Libraries To I

Hi FlatStarfish45 ,

The HPO task will control the HPO process, means it will clone the base task (the one we are optimizing), change the parameters, enqueue it and collect the results.
The base task is the task we want to optimize.
Each one of those two tasks, have different requirements.
You can look at the https://clear.ml/docs/latest/docs/guides/optimization/hyper-parameter-optimization/examples_hyperparam_opt#set-up-the-arguments for how set the base task in the HPO task.
can this be ...

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?

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

Hi SparklingHedgehong28 ,

also, when the AZ spec is left empty (it’s optional), machines fail to start with

Invalid type for parameter LaunchSpecification.Placement.AvailabilityZone, value: None, type: <class 'NoneType'>, valid types: <class 'str'>Checking this issue, when not specifying the AZ it should use an available one, will keep you posted about it

ok, I misread. The launch code runs in the SaaS, but it uses credentials to launch machines in our cloud. What stops it th...

3 years ago
0 Hi! Quick Question. I'M New To Clearml, And Seem To Have Problems Catching Experiments When Done Through A Container (Docker). I Have The Clearml-Server Running And When I Try Kick Off A Simple Script On My Local Machine It Gets Recognized By Clearml And

Hi SarcasticSnake58 ,

The connection to the server is in the api part in your ~/clearml.conf file. I think you don’t have such file in your running container, so you are directed to the demoapp server.

If you are running the container from your local machine, you can start the container with the local ~/clearml.conf , add -v "~/clearml.conf":"/root/clearml.conf" to the docker command. You can also connect the docker and create a new configuration file with ` clearml-init...

4 years ago
0 Hi, Could You Provide An Example Of Setting Up Sdk.Storage.Direct_Access?

Hi VictoriousPenguin97

sdk.storage.direct_access is part of the extended support in the paid version.
But I think its not required since ClearML will simply try to access the path directly as it is, and you don’t need to configure it.

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

Currently, imshow plots are showing in debug samples section.

5 years ago
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

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

4 years ago
0 Hey Again

yap, that should do the trick

5 years ago
0 Hi, I'M Using The Autoscaler And Getting The Error

WonderfulArcticwolf3 and CloudySwallow27 are you running it as a service or via the apps? whats the clearml version (not agent)?

3 years ago
0 Hey All. Question About The Bucket Config For Clearml. Is It Possible To Have Two Buckets In The Config? We Have Partners In Eu And Us, And Due To Data Governance Legislation, We Cannot Store All The Data In One Bucket. Any Insights?

Hi TenseOstrich47 ,

Try using aws credentials with region too https://github.com/allegroai/clearml/blob/master/docs/clearml.conf#L88

credentials: [ specifies key/secret credentials to use when handling s3 urls (read or write) { bucket: "my-bucket-name" key: "my-access-key" secret: "my-secret-key" region: "my-region" },

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

simply changing to 

show

doesn’t work in my case as i am displaying CM.. what about if i use 

matshow

Can you share with me some code you have (just the matplot part)? What about the example? if you run it, do you get some plots in plots section and some in debug?

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

5 years ago
0 I Have Just Installed The Pypi Version Of

Hi VivaciousPenguin66 ,

This issue should be fixed in the coming version, will be out soon. You can use the Github https://github.com/allegroai/clearml-serving.git version which is already fixed 🙂

4 years ago
Show more results compactanswers