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
AnxiousSeal95
Moderator
20 Questions, 291 Answers
  Active since 10 January 2023
  Last activity 7 months ago

Reputation

0

Badges 1

14 × Eureka!
0 Votes
3 Answers
999 Views
0 Votes 3 Answers 999 Views
Hi Everyone! Just making sure no one misses the launch of our new Pipeline feature! We released our new pipeline UI to our hosted solution today (Will follow...
2 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
Hi Everyone! Some updates from our side! 🎊 As you know we've released our paid Saas tier 🙂 It's the same awesome product (well, we think that but we're bia...
2 years ago
0 Votes
0 Answers
943 Views
0 Votes 0 Answers 943 Views
Hi Everyone! A new version with datasets fix is deployed! Please let us know if you encounter further issues
2 years ago
0 Votes
1 Answers
981 Views
0 Votes 1 Answers 981 Views
Hi Everyone, Erez from ClearML Here! 😄 Did any of you build a dashboard on top of ClearML? If so I'd be happy to chat and hear about what you've done! 😄
3 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
3 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
3 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
And if we're already announcing stuff, We'll be releasing a monthly roadmap! 🎉 This should help improve the visibility of our efforts and let you chip in wi...
3 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
Hi Community! 😍 We were wondering if any of you had the chance to use the Nvidia TAO + ClearML integration! 🚀 We're looking for some feedback so message me...
one year ago
0 Votes
8 Answers
1K Views
0 Votes 8 Answers 1K Views
Hi There everyone! We're working on some better UX for triggering and scheduling functions and would love to pick your brains 🙂 If anyone is using it \ inte...
3 years ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K Views
Hi
Hi ! We're brewing up some improvements for our pipeline feature and would be happy to have a short chat with people using it to understand usage and potenti...
3 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
Last reminder for our first community talk! We'll be discussing our latest feature - ClearML Apps! We'll also review the new ClearML Roadmap and have a Q&A S...
3 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
Hi Everyone! If you're using out Saas server and aren't in the dedicated slack channel, we found an issue displaying old dataset tasks and are working on res...
2 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
New RC(1.1.2rc0) version available! 🎉 Change set: ClearML Data - Upload dataset now supports chunksize, for multi-part upload/download (useful with large da...
3 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
🎉 Hi everyone! Want curvier graphs? 📈 Who doesn't?! Check out the new ClearML ad , and get into ClearML shape, today! :weight_lifter:
one year ago
0 Votes
4 Answers
991 Views
0 Votes 4 Answers 991 Views
Hello Gals and Guys! happy new year! 🎊 It's that time of the year where we summarize what's done and what's coming soon, so buckle up, we are on our way! Th...
2 years ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
Also! Would like to highlight ClearML SDK 1.0.5 cool new features, in case you've missed it 🙂 Add automagic logging for Click CLI! Adding the TaskScheduler ...
3 years ago
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
Hi
Hi , Join us today for our community talk, where we'll discuss our updated roadmap, give an overview of our new pipeline V2 features and celebrate Hacktoberf...
3 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
Woot Woot! 🎉 Just a small teaser from the upcoming server version with our new experiment layout! 🕶️ And if you'll look REALLY closely you might see some i...
2 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
Hi everyone! Our website is down as some of you have noticed 🙂 and with it our lovely documentation page! No we did not forget to renew our SSL (We love the...
2 years ago
0 I'Ll Just Ask This Question Again To Get Some Fresh Attention To This. Is There Any Way To Run A Pipeline Step Conditionally? E.G, Under Certain Condition, Execute The Step Otherwise Don'T?

VexedCat68 you mean the artifact in the previous step is called "merged_dataset_id"? Is it an artifact or is it a parameter? And what issues are you having with accessing the parameter?

2 years ago
0 Hi Guys, Coming This Time To Share An Idea Of A Killer Feature For Clearml

JitteryCoyote63 you should've talked about a million dollars because we just discussed this today as it's also based on pytorch-ignite!

3 years ago
0 I'Ll Just Ask This Question Again To Get Some Fresh Attention To This. Is There Any Way To Run A Pipeline Step Conditionally? E.G, Under Certain Condition, Execute The Step Otherwise Don'T?

So I'm looking at the example in the github, this is step1:
def step_one(pickle_data_url): # make sure we have scikit-learn for this step, we need it to use to unpickle the object import sklearn # noqa import pickle import pandas as pd from clearml import StorageManager pickle_data_url = \ pickle_data_url or \ ' ` '
local_iris_pkl = StorageManager.get_local_copy(remote_url=pickle_data_url)
with open(local_iris_pkl, 'rb') as f:
iris ...

2 years ago
3 years ago
2 years ago
0 Hi All! I Noticed When A Pipeline Fails, All Its Components Continue Running. Wouldn'T It Make More Sense For The Pipeline To Send An Abort Signal To All Tasks That Depend On The Pipeline? I'M Using Clearml V1.1.3Rc0 And Clearml-Agent 1.1.0

Hmm, I'm not 100% sure I follow. you have multiple models doing predictions. Is there a single data source that feeds to them and they run in parallel. or is one's output is another input and they run serially?

3 years ago
0 Why Is It Difficult To Reproduce An Experiment In Clearml Without Errors Such As Dependencies Incompatibility?

pytorch wheels are always a bit of a problem and AFAIK it tells that there isn't a matching version to the cuda specified \ installed on the machine. You can try and update the pytorch to have exact versions and it usually solves the issue

2 years ago
0 Hi All, I Hope Someone Can Help. I Am Using Clearml Agents With Docker Containers To Train Rl Models With Stable Baselines 3 On An On-Premise Server. I Am Having Issues With Saving And Loading Models. If I Don'T Specify

Hi MysteriousSeahorse54 How are you saving the models? torch.save() ? If you're not specifying output_uri=True it makes sense that you can't download as they are local files 🙂
And when you put output_uri = True, does no model appear in the UI at all?

one year ago
0 Hello! I Have Started A Reddit Discussion That Is Gaining Some Momentum:

As for experimenting, I'd say (and this community can be my witness 🙂 ) that managing your own experiments isn't a great idea. First, you have to maintain the infra (whatever it is, a tool your wrote yourself, or an excel sheet) which isn't fun and consumes time. From what I've heard, it usually takes at least 50% more time than what you initially think. And since there are so many tools out there that do it for free, then the only reason I can imagine of doing it on your own would be if y...

3 years ago
0 Hi, I Get These Errors For Triggerscheduler:

Hi, in addition to natanM's question, does it fail on trigger or by running the script? if running with worker, please share worker logs as well!

2 years ago
0 Can'T Access The Docs At The Moment. Ssl Error. Can You Guys Verify Whether Your Ssl Certificate Has Expired Or Not Please? Unsure Whether The Error Is On My Side

Sorry about the inconvenience...We are updating our website and the docs are the victims...should be resolved soon

2 years ago
0 Hey. This May Be A Silly Question ... But I Am Unsure About How The

Hi TenseOstrich47
You can also check this video out on our youtube channel:
https://youtu.be/gPBuqYx_c6k
It's still branded as trains (our old brand) but it applies to clearml just the same!

3 years ago
0 Hello! I Haven'T Used Trains Before, I Am Looking For Opinion From Anyone With More Experience On Whether Trains Is The Correct Tool For My Non-Ml Use Case. My Usecase:

Hey There SlimyRat21
We did a small integration of Trains with a Doom agent that uses reinforcement learning.
https://github.com/erezalg/ViZDoom
What we did is basically change a bit the strcuture of how parameters are cought (so we can modify them from the UI), then logged stuff like loss, location on the map, frame buffers at certain times and information about end of episode that might be helpful for us.
You can see how it looks on the demoapp (as long as it lasts 🙂 )
Let me know if...

4 years ago
0 Hi

TrickySheep9 Tough question 😄 We are working on a major change to pipelines. We are now documenting pre\post step callbacks (so people can write custom code that interacts with the pipeline that's independent of the script's code).
We're working on adding the ability to run small code snippets directly on the pipeline controller task (so you don't have to wait for an agent to setup).
AND we are working on a new UI soon 🙂
A tiny spoiler is that we'll soon improve our visibility and...

3 years ago
0 Hi Guys, Coming This Time To Share An Idea Of A Killer Feature For Clearml

JitteryCoyote63 I'm not sure we can get to it fast enough, unfortunately 😞 (It only means we have cooler stuff that we're working on 😄 )

3 years ago
0 Thanks Clearml Team, Great To See These Requested Features Are Released!

As we always say, you came because it's free, you stayed because features are being released before git issues are even opened 😉
Thanks for contributing back with ideas and inputs! 😄

3 years ago
3 years ago
0 Hello Everyone! I'M Trying To Use Arguments With The Pipeline But Can Not Make It Work. My Case Is

Try this, I tested it and it works:
docker=pipe._parse_step_ref("${pipeline.url}")It's hack-ish but it should work. I'll try and get a fix in one of the upcoming SDK releases that supports parsing references for parameters other than kwargs

2 years ago
0 Hi

DilapidatedDucks58 Do you see in the project card the overview tab? On top you are prompted to select a metric snapshot. Do you see it?

3 years ago
0 How Do I Create Sub Projects With The New Version 1.0?

It's a known fact that documentation always trail features by 3-6 months 😄 We're working on new docs, should be released this week 🙂

3 years ago
0 Hi, I Am Trying To Understand Clearml-Data And Only Found This Piece Of Article Explaining It.

Hi Jax, I'm working on a few more examples of how to use clearml-data. should be released in a few weeks (with some other documentation updates). These however don't include the use case you're talking about. Would you care to elaborate more on that? Are you looking to store the code that created the data, in the execution part of the task that saves the data itself?

3 years ago
0 Hi

SubstantialElk6 Yes! We should have it up, together with the previous one uploaded soon!

3 years ago
Show more results compactanswers