SuccessfulKoala55 That at least did not work, unless one has to specify wildcard patterns perhaps..?
I think so, it was just missing from the official documentation π Thanks!
Then that did not work, but I'll look into it again soon!
Oh and clearml-agent==1.1.2
My current workaround is to use poetry and tell users to delete poetry.lock if they want their environment copied verbatim
That's enabled; I was aiming if there are flags to add to pip install CLI, such as --no-use-pep517
Not that I recall
That's what I thought @<1523701087100473344:profile|SuccessfulKoala55> , but the server URL is correct (and WebUI is functional and responsive).
In part of our code, we look for projects with a given name, and pull all tasks in that project. That's the crash point, and it seems to be related to having running tasks in that project.
The S3 bucket credentials are defined on the agent, as the bucket is also running locally on the same machine - but I would love for the code to download and apply the file automatically!
I understand, but then the toml file needs to be parsed to ensure poetry is used. It's just a tool entry in the pyproject.toml.
On an unrelated note, when cloning an experiment via the WebUI, shouldn't the cloned experiment have the original experiment as a parent? It seems to be empty
We're using self hosted account
Sure! It's a bit intricate as it accommodates many of our different plotting functionalities, but this consists of the important bits (I realize we have some bad naming here, but fig[0] is actually a Figure object, and fig[1] is an Axes object):
` plt.switch_backend('agg')
sns.set_theme(...)
fig = plt.subplots(...)
sns.histplot(data, ax=fig[1], ...)
fig[1].set_xlim(...)
fig[1].set_ylim(...)
fig[1].legend(loc='best')
fig[1].set_xlabel(xlabel)
fig[1].set_ylabel(ylabel)
fig[1].set_...
Not sure I understand your comment - why not let the user start with an empty comparison page and add them from "Add Experiment" button as well?
I'm not sure what you mean by "entity", but honestly anything work. We're already monkey-patching our way π
Thanks! I'll wait for the release note/docs update π
Uhhh, not really unfortunately :white_frowning_face: . I have ~20 tasks happening in a single file, and it's quite random if/when this happens. I just noticed this tends to happen with the shorter tasks
I'm guessing that's not on pypi yet?
The Task.init is called at a later stage of the process, so I think this relates again to the whole setup process we've been discussing both here and in #340... I promise to try ;)
What's new in 1.1.6rc0?
Dynamic pipelines in a notebook, so I donβt have to recreate a pipeline every time a step is changed π€
It's given as the second form you suggested in the mini config ( http://${...}:8080 ). The quotation marks are added later by pyhocon.
Heh, well, John wrote that in the first reply in this thread π
And in Task.init main documentation page (nowhere near the code), it says the following -
Any follow up thoughts SuccessfulKoala55 or CostlyOstrich36 ?