Hi UnevenDolphin73 , the fix is ready, can you try it with the latest rc?
pip install clearml==1.4.2rc0
Hi OutrageousSheep60 , I think the connect_configuration is your solution for this one (or connect)
Hi DeliciousBluewhale87 ,
How about using the ClearML Pipeline? https://allegro.ai/clearml/docs/docs/examples/pipeline/pipeline_controller.html
Can this do the trick?
In the AWS autoscaler wizard, you need to enter your credentials to AWS. The wizard will use those so it should have the same permissions
DepressedChimpanzee34 how do you generate the task thats running remotely? once the agent pulled the task, this is your running configuration (it will pull the same configuration from the server as you see in the UI)
The PipelineController task? If so, you can get the task ( pipeine_task = Task.get_task(task_id=your pipeline task id)
) and after pipeine_task.get_output_destination()
, can this do the trick?
Hi PompousBeetle71 ,
Can you please share with me some more information? Where can you see the tags in the server? Do you mean in the web-app? Do you see the tags under the task or the model?
whats the clearml version you are using?
I guess you are using an on prem server and not cloud one (aws for example)
Not sure I’m getting the all system but for:
I want to have a CI/CD pipeline that, upon Engineer A commit, ensures that the pipeline is re-deployed such that with Engineer B uses it as template, it’s definitely the latest version of the code and process
You can configure your task to take the latest from a branch, so on each commit you are updated.
Hi HighCentipede85 ,
You can pass the git repo detection with auto_connect_frameworks={"detect_repository": False}
:task = Task.init(project_name="Your project name", task_name="Your task name", auto_connect_frameworks={"detect_repository": False})
Notice: This will leave empty all the sections for the execution part.
are you referring to the docker image? The same as before with task.set_base_docker("dockerrepo/mydocker:custom --env GIT_SSL_NO_VERIFY=true")
somehow the uncommitted changes (full script in the case) weren't detected
and under uncommitted changes you have the entire script?
ArrogantBlackbird16 can you send a toy example so I can reproduce it my side?
Hi ThickDove42 ,
The SETUP SHELL SCRIPT is the bash script to run at the beginning of the docker before launching the Task itself.
You can just try edit it, for example:
apt update apt-get install -y gcc
Hi MinuteWalrus85 ,
Do you have tensorboard
installed too?
I installed trains
, fastai
, tensorboard
and tensorboardx
and run a simple example, can be view in this link -
https://demoapp.trains.allegro.ai/projects/bf5c5ffa40304b2dbef7bfcf915a7496/experiments/e0b68d0fe80a4ff6be332690c0d968be/execution
UnevenDolphin73 I cant reproduce this issue on my side 😞 can you give me some hints how to?
And you like each series to be in a different plot?
PompousParrot44 since imshow
display data as an image, we currently log it into the debug samples section as this is the section natively used to display and interact with images.
Do you think it should be under plots?
Hi BitterLeopard33 ,
You want to have the data section in the dataset task uri?
Does it had any errors in the local run up to the task.execute_remotely
call?
You can try hack it, in the UI, under EXECUTION tab, add this prefix (-m scalene) to the script path, something like: - scalene my_clearml_task.py
, can you try with it? (make sure you install scalene or have it under your installed packages)
Hi CooperativeFox72 ,
basically each user should do it once, just to add credentials in the user’s profile page.
About credentials for the server, let me check that for you
The training task (child)
this is the task the HPO is cloning?
Do you have the packages in this task?
But, if you like, you can connect a remote interpreter and debug with PyCharm, locally, without clearml-agent
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?