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
AlertBlackbird30
Moderator
13 Questions, 92 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

6 × Eureka!
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
Howdy and Good morning anyone who is 🙂 We have an upcoming live Q&A with our lead engineer today at 1pm EDT. If you have ever wanted a peek into the minds b...
4 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
ClearML v1.0.1 is available on github. Mostly a few bug fixes but the low-down is over here ; https://github.com/allegroai/clearml-server/releases/tag/1.0.1
4 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
I am new here, so, I apologize in advance if this annoys people but, if you could spare a few seconds, then please tell us how you first heard about ClearML/...
4 years ago
0 Votes
6 Answers
2K Views
0 Votes 6 Answers 2K Views
Announcing ClearML 0.17.5 Features Improve Datasets support Reporting and Plotly improvements Add force_download argument (special shout out to JitteryCoyote...
4 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
Hello (yes, I did use the everyone button/tag, sorry!), please join us in welcoming ClearML 1.0. The community hosted server was quietly updated over the wee...
4 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
4 years ago
0 Votes
9 Answers
2K Views
0 Votes 9 Answers 2K Views
For any early adopters, who also want to give us feedback - both good and bad, please feel free to try the clearml-serving beta https://pypi.org/project/clea...
4 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
The ClearML Ops end to end on Pipelines is currently under way here https://gtc21.event.nvidia.com/media/1_477hq95y
4 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
4 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
As someone much smarter than me noted.. in our small community we have reached 500 users this morning. It's a small milestone but nothing wrong with celebrat...
4 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
CTO is currently talking about ClearML and it's reason d'etre here ; https://gtc21.event.nvidia.com/media/1_yp84hx7v (signup required but an NVidia account s...
4 years ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
Also, did you enjoy our talk and workshop? Do you have any questions? Join our LIVE Q&A livestream session to answer all your MLOps questions! We are going l...
4 years ago
0 Votes
5 Answers
2K Views
0 Votes 5 Answers 2K Views
Greetings and hello . If I may have a few seconds of your time, I would love to draw your attention to the updated ClearML homepage (at https://clear.ml 🙂 ....
4 years ago
0 Hey, So We Noticed The

@<1687643893996195840:profile|RoundCat60> you set it once, inside the docker-compose itself.. it will affect all docker containers but, to be honest, docker tends to log everything

4 years ago
0 Hey, So We Noticed The
container_name:
  logging:
    options:
      max-size: 10m
4 years ago
0 Hey, So We Noticed The

I believe you can set it on a 'per container' way as well.

4 years ago
0 Hi, How Can I Query On Plots And Log Added For A Specific Task Programmatically? (As In, Besides The Clearml Ui And Asumming I Have Its Task Id)

To my mind, 'data programmatically' means using python and the functions inside the Task item to get this, but I suspect this is not what you mean ?

4 years ago
0 Announcing Clearml 0.17.5 Features

that is one of the things I am working away on, even as we speak! If you have any items that you want to see sooner rather than later, please let me know 👍

4 years ago
0 Hi, I'M Using The K8S Glue And Have A Few Questions.

Clear-ml agent does have a build flag install-globally.. That may get you where you want to go

4 years ago
0 Hi All, Is There A Way To Schedule The Tasks From The Queue Onto The Gpu Instances Based On Factors Such As Gpu Utilisation, Number Of Cpu Cores Present, Free Memory Or Custom Parameters Such As Priority Of The Task, Estimated Time Etc?

I would think that a combination of kubernetes (I believe the preferred way to support multiple users at once, but open to being wrong) and individual queue's is probably the solution here.

for example; in kubernetes you could setup an agent to listen to bob-queue and another agent to listen to alice-queue. In the kubernetes dashboard you could assign a certain amount of cpu/memory and if using taints, gpu or not.

4 years ago
0 I Have A Notebook Which Is Uncommited. It Is Being Run On A Remote Machine With Clearml-Agent Through Clearml-Session. Everything With Newest Versions, Server Is Community-Hosted. Under Uncommitted Changes I See

Howdy Jevgeni, that's .. strange. I am using google colab (free edition 🙂 and doing exactly the same as you, but I don't see any uncommited changes.. hrrm.. can you try this on colab maybe ? I am wondering if it's your jupyter notebook's version of python or some other notebook extension maybe

4 years ago
0 Hey, So We Noticed The

hhrrmm.. in the initial problem, you mentioned that the /var/lib/docker/overlay2 was growing large in size.. but.. 4GB seems "fine" for docker images.. I wonder .. does your nvme0n1p1 ever report like 85% or 90% used or do you think that the 4GB is a lot ? when you restart the server, does the % used noticeably drop ? that would suggest tmp files inside the docker image itself which.. is possible with docker (weird but, possible)

4 years ago
0 Announcing Clearml 0.17.5 Features

Ohhh... that makes sense.. use best of breed in areas where we don't overlap.

4 years ago
0 Hello Guys

Hey Federico, since you are doing this from inside python, you could always call the 'get_parameters_as_dict' from the Task you have cloned, merge/update whichever ones you want to (or not), and then call ' set_parameters_as_dict ' .. I believe that should get you where you want to go 🙂

4 years ago
4 years ago
0 Well, This Is My Question... I'M Trying To Adapt Clearml To Aws Using Basically Ecs Fargate + Documentdb + Aws Es + Elasticache + Efs. I Could Start The Fileserver Component, But Now I'M Trying To Start The Api Server And Is Not Working, Before Stop The T

if you manage to get it up and running, I would love to do a deep dive with you to understand how you did and share it on the company's blog 🙂 🙂

no pressure 😜

4 years ago
0 Hi, I Shifted My Clearml Setup To An On-Premise Disconnected Env, Which Has A Pip Repo Setup. I Noted This Warning,

I agree with Martin.B, it appears to be a CUDA mismatch. The version of torch is trying to use cuda 10.2 but you have
agent.default_docker.image = nvidia/cuda:10.1-runtime-ubuntu18.04that should probably be
agent.default_docker.image = nvidia/cuda:10.2-runtime-ubuntu18.04

4 years ago
0 Did Someone Here Already Try The

howdy Tim, I have tried to stay out of this, because a lot is going over my head (I am not a smart man 🙂 but, one thing I wanted to ask, are you doing the swapping in and out of code to do a/b testing with your models ?! Is this the reason for doing this ? Because if so, I would be vastly more inclined to try and think of a good way to do that. Again, this maybe wrong, I am trying to understand the use case for swapping in and out code. 🙂

4 years ago
0 General Open Question.... I'M Wondering If People Can Share Learning Experience With Clearml. Ie. When You Were Going Down This Path, What Was Easy/Hard, What Did (Not) Work, Did Expectations Measure Up To Reality?

I also want to stress that these don't need to be happy-path interviews/results, although those are infinitely nicer to do 🙂 So I hear you with also noting what does not work as much as what did 👍

4 years ago
0 Hi, I'M Using The K8S Glue And Have A Few Questions.

I would assume, from the sounds of it, that you are using the dockerfile to pip install python libs.. In which case a pip install clear-ml can also be done at image creation time.. I don't know what other methods you would be using to install python deps.. Easy_install?!?

4 years ago
4 years ago
4 years ago
0 Hey, So We Noticed The

Howdy and Morning @<1687643893996195840:profile|RoundCat60> .. docker when using overlay2 doesn't have it's mount points show up in a 'df' btw, they will only appear in a 'df -a', mostly because since they are simply 'overlays', they don't (technically) consume any space (I mean, the files are still in the /var/lib but not for the space counting practices used by df)

this is why I was suggesting a find, maybe with a 'du' .. actually.. let me try that here.. 2s

4 years ago
0 Hi, I'M Using The K8S Glue And Have A Few Questions.

SubstantialElk6 I am having a bit of a monday morning (on a wednesday, not good)

since python is running inside a docker/cri-o/containerd in k8s anyway, what would you gain from using the installed global python libraries ?? Any libs would have to be installed at container time anyway so.. urm. yeah.

feel free to treat me like an idiot and use small words to explain, I honestly don't mind 🙂 I could be missing something in your use case (more than likely)

4 years ago
Show more results compactanswers