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
SweetBadger76
Moderator
1 Question, 239 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

4 × Eureka!
0 Votes
8 Answers
955 Views
0 Votes 8 Answers 955 Views
hello TartSeagull57 This is a bug introduced with version 1.4.1, for which we are working on a patch. The fix is actually in test, and should be released ver...
2 years ago
0 Hi, Is There Any Approach To Record Some Experiment Metric (E.G., Accuracy) And Display In The Experiment Table So I Can Compare The Metric Among Different Experiments? The Approach I Found Is

report_scalar pernits to manually report a scalar series. This is the dedicated function. There could be other ways to report a scalar, for example through tensorboard - in this case you would have to report to tensorboard, and clearML will automatically report the values

2 years ago
0 Need

When the pipeline or any step is executed, a task is created, and it name will be taken from the decorator parameters. Additionally, for a step, the name parameter is optional : if not provided, the function name will be used instead.

It seems to me that your script fails creating the pipeline controller task because it fails pulling the name parameter. which is weird ... Weird because in the last error line, we can see that name !

2 years ago
0 Need

those are the credentials you got from your self hosted server ?
what about the logs before the error ? i think it relevant to have them all. i try to isolate the error, and to understand if it comes from the cred, the servers addresses, a file error or a network error

2 years ago
2 years ago
0 Hey,

TenderCoyote78 i pm you to avoid overfilling the thread here

2 years ago
0 Hi We Are Getting The Following Error When We Are Trying To Run A Task On Our On Premis

i am not sure i get you here.
when pip installing clearml-agent, it doesnt fire any agent. the procedure is that after having installed the package, if there isnt any config file, you do clearml-agent init and you enter the credentials, which are stored in clearml.conf. If there is a conf file, you simply edit it and manually enter the credentials. so i dont understand what you mean by "remove it"

2 years ago
0 Hey,

hi WickedElephant66
you can log your models as artifacts on the pipeline task, from any pipeline steps. Have a look there :
https://clear.ml/docs/latest/docs/pipelines/pipelines_sdk_tasks#models-artifacts-and-metrics
I am trying to find you some example, hold on 🙂

2 years ago
0 Hello Community! How I Can Add S3 Credentials To S3 Bucket In Example.Env For Clearml-Serving-Triton? I Need To Add Bucket Name, Keys And Endpoint

hi AbruptHedgehog21
which s3 service provider will you use ?
do you have a precise list of the var you need to add to the configuration to access your bucket ? 🙂

2 years ago
0 Hi, Is There Any Manifest For The Relevant Polices Needed For The Aws Account (If We Are Using Autoscaling)? Also, Is There A Way To Use Github Deploy Key Instead Of Personal Token? Thanks !

Hi SmugTurtle78
We currently don't support GitHub deploy keys, but there might be a way to make the task use SSH (and not HTTPS), so that you could put the SSH key on the AWS machine. Please let me check if I can find such a solution, and come back to you after.

2 years ago
0 Hello I Was Trying To Download The Task Log Using Api In Python I'M Using

oups please pardon me I made a confusion, this answer is not related to your issue. my fault 🙏

2 years ago
0 Need

can you describe the issue ?

2 years ago
0 Suppose I Use A Pipeline Decorator To Define A Pipeline:

hi PanickyMoth78
from within your function my_pipeline_function here is how to access the project and task names :

task = Task.current_task()
task_name = task.name
full_project_path = task.get_project_name()
project_name = full_project_path.split('/')[0]

Note that you could also use the full_project_path to get both project and task name
task_name = full_project_name.split('/')[-1]

2 years ago
0 Hey,

for controlling the number of cpus cores, i am not sure. i keep you updated asap

2 years ago
0 Hello Community! How I Can Add S3 Credentials To S3 Bucket In Example.Env For Clearml-Serving-Triton? I Need To Add Bucket Name, Keys And Endpoint

hi AbruptHedgehog21
clearml-serving will use your clearml.conf file
Configure it to access your s3 bucket - that is the place for bucket, host etc

2 years ago
0 Hey,

With pleasures ! Hope that will help

2 years ago
0 Hey,

btw here is the content of the imported file:

import torch
from torchvision import datasets, transforms
import os
MY_GLOBAL_VAR = 32

def my_dataloder ():
return torch.utils.data.DataLoader(
datasets.MNIST(os.path.join('./', 'data'), train=True, download=True,
transform=transforms.Compose([
transforms.ToTensor()
` ...

2 years ago
0 Hey,

No, it is supposed to have its status updated automatically. We may have a bug. Can you share some example code with me, so that i could try to figure out what is happening here ?

2 years ago
0 Hi Community, Is There A Way To Download All The Logged Scalars/Plots Using Code Itself?

for the scalars :

` import pandas as pd
import plotly.graph_objects as go

scalars = client.events.scalar_metrics_iter_histogram(task=task.id).to_dict()['metrics']

for graph in scalars.keys():
for i, metric in enumerate(scalars[graph].keys()):
df = pd.DataFrame(scalars[graph][metric]).iloc[:, 1:]
fig = go.Scatter(
scalars[graph][metric],
mode='lines',
name=metric,
showlegend=True
)
plio.write_image(fig=go.Fi...

2 years ago
0 Hey,

however the model is saved in the step task - this is what i am trying to figure out

2 years ago
0 Hello I Was Trying To Download The Task Log Using Api In Python I'M Using

Yep sorry I have not pasted the import line. You should add something like this :

from clearml.backend_api.services import events

🙏

2 years ago
0 Hi There, Is There An Option To Show Plots In The Order They Are Inserted To Clearml Instead Of Alphabetic Order Of Titles?

Hey Atalya 🙂

Thanks for your feedback. This is indeed a good feature to think asbout.
So far there is no other ordering than the alphabetical. Could you please create a feature request on github ?

Thanks

2 years ago
0 Hey Guys! Has Anyone Ever Seen An Error Like This? I'M Using My Code In A

Hi SmugSnake6
I might have found you a solution 🎉 I answered on the GH thread https://github.com/allegroai/clearml-agent/issues/111

2 years ago
0 Hi Everyone

i guess it is... but still 😉

2 years ago
0 Need

can you share some code ? about how you build the pipeline

2 years ago
Show more results compactanswers