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
WackyRabbit7
Moderator
73 Questions, 550 Answers
  Active since 10 January 2023
  Last activity 5 months ago

Reputation

0

Badges 1

533 × Eureka!
0 Votes
0 Answers
842 Views
0 Votes 0 Answers 842 Views
(no menu on top or side)
2 years ago
0 Votes
6 Answers
818 Views
0 Votes 6 Answers 818 Views
Is it possible to ask an agent to use a specified existing python environment instead of building one from scratch?
2 years ago
0 Votes
5 Answers
885 Views
0 Votes 5 Answers 885 Views
How do I get access to uploaded artifacts (not registered)? I see I can find their URL using Task.get_task(...).artifacts and then use StorageManager to down...
3 years ago
0 Votes
4 Answers
800 Views
0 Votes 4 Answers 800 Views
Got something very wrong with my pipeline, the pipeline plot shows it has an experiment in_progress but when going to the experiment itself it is already com...
2 years ago
0 Votes
5 Answers
823 Views
0 Votes 5 Answers 823 Views
Is the https://azuremarketplace.microsoft.com/en-us/marketplace/apps/apps-4-rent.clearml-on-centos8 maintained? I can't see anywhere a log of releases or som...
one year ago
0 Votes
23 Answers
962 Views
0 Votes 23 Answers 962 Views
Inside an EC2 machine, using the trains-server AMI, I'm trying to launch my AWS Auto-Scaler service. When I enqueue the task to the services queue I get the ...
3 years ago
0 Votes
24 Answers
803 Views
0 Votes 24 Answers 803 Views
Question about the file server. Currently, we have a machine with MINIO installed, and all file communication is made using the MINIO SDK client. [MINIO is j...
3 years ago
0 Votes
33 Answers
12K Views
0 Votes 33 Answers 12K Views
Question about the auto scaling service Under extra_trains_conf when I supply a configuration file path, should it be a path on the trains server running the...
3 years ago
0 Votes
30 Answers
813 Views
0 Votes 30 Answers 813 Views
Using PipelineController I have task B that depends on task A, e.g. A -> B. Task B reads artifacts that were saved by task A. I did define the dependency bet...
2 years ago
0 Votes
31 Answers
17K Views
0 Votes 31 Answers 17K Views
Unrelated problem (or is it?) the ClearML's built in Cleanup Service fails clearml.utilities.pyhocon.exceptions.ConfigMissingException: 'No configuration set...
2 years ago
0 Votes
31 Answers
11K Views
0 Votes 31 Answers 11K Views
In PipelineV2, is it possible to register artifacts to the pipeline task? I see there is a private variable ._task but not sure its the right way to go as it...
2 years ago
0 Votes
0 Answers
862 Views
0 Votes 0 Answers 862 Views
(data is a bit different, but the plot is missing hte scale and the colors)
3 years ago
0 Votes
1 Answers
805 Views
0 Votes 1 Answers 805 Views
Is there a robust way (using the SDK and not the UI) to add tags to Task regardless of where it is executed?
2 years ago
Show more results questions
0 Question About The Configuration Format - I'D Like To Parse It Within My Python Code So I'Ll Be Able To Access Things Like

AgitatedDove14 permanent. I want to start with a CLI interface that allows me add users to the trains server

3 years ago
0 Question About The File Server. Currently, We Have A Machine With Minio Installed, And All File Communication Is Made Using The Minio Sdk Client. [Minio Is Just Like An S3 Bucket, Fully Compliant With S3 Protocol]. In The Examples I'Ve Seen The

I tried what you said in the previous response, setting sdk.aws.s3.key and sdk.aws.s3.secret to the ones in my MINIO. Yet when I try to download an object, i get the following
` >>> result = manager.get_local_copy(remote_url="s3://*******:9000/test-bucket/test.txt")
2020-10-15 13:24:45,023 - trains.storage - ERROR - Could not download s3://
*****:9000/test-bucket/test.txt , err: SSL validation failed for https://
*****:9000/test-bucket/test.txt [SSL: WRONG_VERSION_NU...

3 years ago
0 Question About The File Server. Currently, We Have A Machine With Minio Installed, And All File Communication Is Made Using The Minio Sdk Client. [Minio Is Just Like An S3 Bucket, Fully Compliant With S3 Protocol]. In The Examples I'Ve Seen The

Okay Jake, so that basically means I don't have to touch any server configuration regarding the file-server on the trains server. It will simply get ignored and all I/O initiated by clients with the right configuration will cover for that?

3 years ago
0 Question About The File Server. Currently, We Have A Machine With Minio Installed, And All File Communication Is Made Using The Minio Sdk Client. [Minio Is Just Like An S3 Bucket, Fully Compliant With S3 Protocol]. In The Examples I'Ve Seen The

Martin: In your trains.conf, change the value
files_server: ' s3://ip :port/bucket'

Isn't this a client configuration ( trains-init )? Shouldn't be any change to the server configuration ( /opt/trains/config... )?

3 years ago
2 years ago
0 In Pipelinev2, Is It Possible To Register Artifacts To The Pipeline Task? I See There Is A Private Variable

So could you re-explain assuming my piepline object is created by pipeline = PipelineController(...) ?

2 years ago
0 In Pipelinev2, Is It Possible To Register Artifacts To The Pipeline Task? I See There Is A Private Variable

AgitatedDove14

So nope, this doesn't solve my case, I'll explain the full use case from the beginning.

I have a pipeline controller task, which launches 30 tasks. Semantically there are 10 applications, and I run 3 tasks for each (those 3 are sequential, so in the UI it looks like 10 lines of 3 tasks).

In one of those 3 tasks that run for every app, I save a dataframe under the name "my_dataframe".
What I want to achieve is once all tasks are over, to collect all those "my_dataframe" arti...

2 years ago
0 In Pipelinev2, Is It Possible To Register Artifacts To The Pipeline Task? I See There Is A Private Variable

and then how would I register the final artifact to the pipelien? AgitatedDove14 ⬆

2 years ago
0 In Pipelinev2, Is It Possible To Register Artifacts To The Pipeline Task? I See There Is A Private Variable

I want to collect the dataframes from teh red tasks, and display them in the pipeline task

2 years ago
0 In Pipelinev2, Is It Possible To Register Artifacts To The Pipeline Task? I See There Is A Private Variable

Okay, looks interesting but actually there is no final task, this is the pipeline layout

2 years ago
0 I'Ve Been Working A Bit With Trains-Agent, Having Them Deployed On Different Machines Listening To Queues (Docker Mode) And It'S Been Working Good So Far. My Question Is What Is The Difference Between That Setup (Creating Agents On Different Machines And

Sorry.. I still don't get it - when I'm launching an agent with the --docker flag or with the --services-mode flag, what is the difference? Can I use both flags? what does it mean? πŸ€”

3 years ago
0 Is There A Way To Programatically Access The Tasks A

I need code access, not UI access

2 years ago
0 Unrelated Problem (Or Is It?) The Clearml'S Built In Cleanup Service Fails

I don't think the problem is setting that variable, I think it has something to do with it but not that obvious... Because it did work for me in the past, since then we docker-compose up/downed a few times, changed some other things etc... Can't figure out what made it get to this point

2 years ago
3 years ago
3 years ago
Show more results compactanswers