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
TimelyPenguin76
Administrator Moderator
0 Questions, 711 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0
0 I Have Some Problems With The Hyperparameters.

Hi UnsightlySeagull42 ,

didn’t get that 😕 what do you mean by

strings are not there anymore.

what is the value? nothing?

3 years ago
0 Hello Community! Is There An Option To Only Download A Part Of A Dataset With .Get_Local_Copy()? I Imagine Something Like This, But I Can'T Find The Right Way To Do It.

Hi SucculentBeetle7 ,

get_local_copy()  will return the entire dataset (the zip file), but you can divide the dataset and have the same parent for all of them, what do you think?

3 years ago
0 Hello All, I Am Trying To Make Clearml Store The Output(Model) To Minio By Setting The Output_Uri.

Hi OddShrimp85 ,

Whats the clearml version you are using? Do you have boto3 installed?

3 years ago
2 years ago
0 Hi, I Just Updated Clearml To Version V1.1.3. Right After Launching A Training Pipeline, The System Crashed Due To The Following Error:

Thanks GiganticTurtle0 , I was able to reproduce it, a fix will be out shortly, will keep you update about it in this thread

3 years ago
0 Hi, Not Sure If I'M Doing Something Wrong Or I Found A Bug. When I Try To Overwrite Some Parameters In A Cloned Task Using

I just tried and everything works.

I run this for the template task:

` from clearml import Task

task = Task.init(project_name="Examples", task_name="task with connected dict")

period = {"start": "2020-01-01 00:00", "end": "2020-12-31 23:00"}

task.connect(period, name="period") `

and this for the clone one:

` from clearml import Task

template_task = Task.get_task(task_id="<Your template task id>")
cloned_task = Task.clone(source_task=template_task,
name=templat...

3 years ago
0 Hey All, I Started To Use Clearml Couple Of Days Ago And It’S Great So Far. I’M Working On A Project That Uses Pytorch Lightning. I Saw The Code Snippet About How To Integrate Clearml With Pytorch Lightning, However I’M Not Sure I Understand How The Integ

Hi MinuteCamel2 ,

It’s all part of the auto-magic 🪄 after Task.init , the pytorch lightning functions are bind with ClearML, so it will report all the outputs to your ClearML app 🙂

3 years ago
0 When Using

let me try to reproduce this issue

3 years ago
0 Hey, I Am Trying To Move The Fileserver To S3. As Here:

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

4 years ago
0 Hey, How Can I Point Trains To Look For It'S Train.Conf File In A Different Path Than ~/Trains.Conf?

For the trains-agent , you have an option to specify the trains.conf file you want it to run with. just start the trains-agent with trains-agent --config ~/trains_agent.conf (where ~/trains_agent.conf is your ~/trains.conf file for the agent run).

how could I configure this in the docker compose?

Do you mean to env vars?

4 years ago
0 Hi, It Seems That Report_Image Puts The Image Both In Plots And Both In Debug Samples, Why Is That?

Hi SmarmySeaurchin8

I tried to reproduce your issue (run https://github.com/allegroai/trains/blob/master/examples/reporting/image_reporting.py example with many report_image calls) and got all the outputs in the debug samples section, can you share a snippet or how can I reproduce this issue?

4 years ago
0 Hello, Is There Any Way To Download All Scalars, Not Only Last Metrics, By Python Interface. I Am Going To Analyze My Learning Curves By Myself.

yep, you should get a dict like:

{'title': {'series': { 'x': [0, 1 ,2], 'y': [10, 11 ,12], }}}

3 years ago
0 Hey, I Am Trying To Move The Fileserver To S3. As Here:

So for the UI each user will need to add the credentials only once, the users should have the credentials in ~trains.conf file. They just need to copy those to the profile page

4 years ago
0 Hi Clearml. I'M Trying To Look At Datasets Functionality (With The Help Of

You can change the dataset _task object to have your storage location as output_uri

3 years ago
0 Is There Some

Hi ReassuredTiger98 ,

try:
` from clearml.config import running_remotely

if running_remotely():
... `

3 years ago
0 Hey, I'M Trying To Run The Aws Autoscaler And Pull A Docker Image From Ecr (Private Repository). I'M Currently Getting The Error:

Hi CleanPigeon16 , yes it is.

You can just write the same as you do in your ~/clearml.conf file, for example:

agent.force_git_ssh_protocol = true

3 years ago
3 years ago
0 I'M Running Multiple Trains-Agents On One Bfg-9000 Machine. Is There A Way To Stop Only One Agent?

Hi WackyRabbit7

You can get all the agents PIDs by
ps -ef | grep "trains-agent"and kill -9 <pid> for the requested agent.

You can also pkill -f "trains-agent --gpus 0"   - This will kill a process that started trains-agent --gpus 0 .
Notice it matches the cmd pattern so it has to match the way you executed the trains-agent. This can be checked with  ps -Af | grep trains-agent

4 years ago
0 Hi, I Try To Use Tf History And To Report The Metrics In The End Of The Training. This Is How I Try To Do It:

Hi RoundSeahorse20 ,

According to the error, history.history['accuracy'] and history.history['loss'] are lists containing the values for the accuracy and loss.

You can go over those and report each value:
for idx, val in enumerate(history.history['accuracy']): logger.report_scalar("accuracy score", "Train", iteration=idx, value=val)Can this do the trick?

3 years ago
0 Hey, About The Dependency Propagation Of Pipeline Components, If I Call A Vanilla Python Function From A Component Does The Dependencies Specified In The Internal Imports Propagated To This Function Call Too ? And Additionally If That Function Is In Anoth

Hi FierceHamster54 ,

I think

And is this compatible with the

Task.force_store_standalone_script()

option ?

is causing the issue, you are storing the entire script as a standalone without any git, so once you are trying to import other parts of the git, BTW any specific reason using it in your pipeline?

2 years ago
Show more results compactanswers