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
DisturbedLizard6
Moderator
9 Questions, 23 Answers
  Active since 05 September 2024
  Last activity 2 days ago

Reputation

0

Badges 1

23 × Eureka!
0 Votes
9 Answers
297 Views
0 Votes 9 Answers 297 Views
2 months ago
0 Votes
1 Answers
93 Views
0 Votes 1 Answers 93 Views
Guys, when you build k8s glue from this path None which build folder do you use? I want to update clearml-agent-k8s-base:1.24-21 which is stored in Helm Chart
2 months ago
0 Votes
4 Answers
106 Views
0 Votes 4 Answers 106 Views
2 months ago
0 Votes
2 Answers
80 Views
0 Votes 2 Answers 80 Views
Hi guys! I try to create leaderboard on a project, and nothing is happen... Can you tell me where the error might be? I couldn't add any metrics
26 days ago
0 Votes
3 Answers
134 Views
0 Votes 3 Answers 134 Views
Can "clearml-task" not try to download data from "github? I specified --folder and --script, but it automatically detects git credentials and tries to pull t...
2 months ago
0 Votes
1 Answers
107 Views
0 Votes 1 Answers 107 Views
2 months ago
0 Votes
3 Answers
92 Views
0 Votes 3 Answers 92 Views
Hi, guys, I have a problem with clearml-serving. When I try to request sklearn model (I try to reproduce an example None ) it shows None type (black picture)...
29 days ago
0 Votes
5 Answers
36 Views
0 Votes 5 Answers 36 Views
5 days ago
0 Votes
15 Answers
235 Views
0 Votes 15 Answers 235 Views
2 months ago
0 Hi, Can Clearml Run Docker Container On Agent Without Specifying Script Path? Because My Main.Py Script Is Already Inside Docker Image And I Can'T Run Clearml-Task: Clearml-Task --Project Test --Name Test --Queue My_Queue --Docker My_Image Here I Have An

@<1523701070390366208:profile|CostlyOstrich36> Thanks for response. Can I ask a second question? I have script main.py in my docker image in this path "/", but when clearml starts my container on agent it tries to execute in this path "/root/.clearml/venvs-builds/3.10/code/" Do you know how to change this behavior? For example I tried the --cwd argument, but Clearml-task tells me that "repository(Error: working directory '{}', must be relative to repository root)", but I don't use repository...

2 months ago
0 Can "Clearml-Task" Not Try To Download Data From "Github? I Specified --Folder And --Script, But It Automatically Detects Git Credentials And Tries To Pull The Code, Although I Clearly Want To Run The Script From The Local Machine On The Agent

Yep, it's inside repo. The steps are like in documentation

clearml-task --project examples --name remote_test --script /path/to/my/script.py
--packages "keras" "tensorflow>2.2" --args epochs=1 batch_size=64
--queue dual_gpu

I have found the solution. I should store script outside git repo, but I think autodetection in ClearML is not a good choice, there is should be flag like --no_autodetect_git

2 months ago
0 Hi, Can Clearml Run Docker Container On Agent Without Specifying Script Path? Because My Main.Py Script Is Already Inside Docker Image And I Can'T Run Clearml-Task: Clearml-Task --Project Test --Name Test --Queue My_Queue --Docker My_Image Here I Have An

And about agent... Agent is listening queue, but the problem that I cant put in queue task without --script or module, here is a code of clearml-task " if raise_on_missing_entries and not base_task_id:
if not script and not module:
raise ValueError("Entry point script not provided")
if not repo and not folder and (script and not Path(script).is_file()):
raise ValueError("Script file '{}' could not be found".format(script))" But wh...

2 months ago
0 Hi, Can Clearml Run Docker Container On Agent Without Specifying Script Path? Because My Main.Py Script Is Already Inside Docker Image And I Can'T Run Clearml-Task: Clearml-Task --Project Test --Name Test --Queue My_Queue --Docker My_Image Here I Have An

As I understand its CLEARML_AGENT_FORCE_CODE_DIR? From documentation I try to understand, should I specify these variables in agent Dockerfile or I can dynamically specify it?

2 months ago
0 Hello! Does Clearml Support The Remote Execution Some Function On Agent Without Executing Code Locally? I Want Something Like Create_Function_Task().Execute_Remotely(), But This Doesn'T Work Because Execute_Remotely() Works Only With "Main" Task. This Opt

Thanks, I've seen this option. I thought it would be possible to do it via Task. I tried the method via Pipeline. The pod is lifted, the library is installed, but at the end there is no file. What could be the problem, can you tell me? Here are the logs: Environment setup completed successfully
Starting Task Execution:
/root/.clearml/venvs-builds/3.10/bin/python: can't open file '/root/.clearml/venvs-builds/3.10/task_repository/clearml-agent.git/test_remote_execution.py': [Errno 2] No such fi...

2 months ago
0 Hello! Does Clearml Support The Remote Execution Some Function On Agent Without Executing Code Locally? I Want Something Like Create_Function_Task().Execute_Remotely(), But This Doesn'T Work Because Execute_Remotely() Works Only With "Main" Task. This Opt

But it's weird. If I want to run the code without a repository, for example through "execute_remotely" or through "add_function_step", because by default it is assumed that the repository is not needed, isn't it so?

2 months ago
0 Hello! Does Clearml Support The Remote Execution Some Function On Agent Without Executing Code Locally? I Want Something Like Create_Function_Task().Execute_Remotely(), But This Doesn'T Work Because Execute_Remotely() Works Only With "Main" Task. This Opt

@<1523701070390366208:profile|CostlyOstrich36> I may not fully understand the functionality of remote code execution. Do I always need to have a git repository for this?

2 months ago
0 Hi, I Have A Question About The Model Registry. Here'S My Situation: I'M Using K8S_Example And Struggling With Uploading A Model. Should Models Be Uploaded To The Fileserver, Or Should I Create Another S3 Bucket As Mentioned In The Documentation?

I'm currently unsure about the correct approach. Would you kindly review my attempts and point out where I might have made a mistake? Here's what I've tried:

  1. I've added the default url in agent helm chart
    clearml:
      ...
      clearmlConfig: |-
       sdk {
         development {
           default_output_uri: "
"
          }
       }
  1. I've added url in agent section:
    agentk8sglue:
      ...
      fileServerUrlReference: 
  1. In the Python fil...
2 months ago
0 Hi, I Have A Question About The Model Registry. Here'S My Situation: I'M Using K8S_Example And Struggling With Uploading A Model. Should Models Be Uploaded To The Fileserver, Or Should I Create Another S3 Bucket As Mentioned In The Documentation?

Ok, guys, I done it, by manually uploading model.
task = Task.init(project_name='test', task_name='PyTorch MNIST train filserver dataset')
output_model = OutputModel(task=task, framework="PyTorch")
output_model.set_upload_destination(uri=" None ")
tmp_dir = os.path.join(gettempdir(), " mnist_cnn.pt ")
torch.save(model.state_dict(), tmp_dir)
output_model.update_weights(weights_filename=tmp_dir)

2 months ago
0 Hi, I Have A Question About The Model Registry. Here'S My Situation: I'M Using K8S_Example And Struggling With Uploading A Model. Should Models Be Uploaded To The Fileserver, Or Should I Create Another S3 Bucket As Mentioned In The Documentation?

Ok, maybe someone knows: how does a pod created by a K8s agent know the model registry URL? When I added the output_uri parameter in the Task, like output_uri=" None ", it doesn't show anything now. Previously, without this parameter, it showed a path like " None ...." in WebUI->Experiments->Artifacts

2 months ago
0 Hi, I Have A Question About The Model Registry. Here'S My Situation: I'M Using K8S_Example And Struggling With Uploading A Model. Should Models Be Uploaded To The Fileserver, Or Should I Create Another S3 Bucket As Mentioned In The Documentation?

@<1523701070390366208:profile|CostlyOstrich36> Yes, I read this at documentation and tried it. But when I use "True" It changes path from " None ...." to " None ..." It's very strange behavior

2 months ago
0 Hi Guys! I Try To Create Leaderboard On A Project, And Nothing Is Happen... Can You Tell Me Where The Error Might Be? I Couldn'T Add Any Metrics

@<1523701070390366208:profile|CostlyOstrich36> Hi, yes, I tried these options, but nothing happened. Do you know how to debug this problem?

23 days ago
0 Hello! Does Clearml Support The Remote Execution Some Function On Agent Without Executing Code Locally? I Want Something Like Create_Function_Task().Execute_Remotely(), But This Doesn'T Work Because Execute_Remotely() Works Only With "Main" Task. This Opt

@<1523701070390366208:profile|CostlyOstrich36> You didn't understand me)) I want to push on the agent one function from code , wait some calculations, and continue code. I don't need to push a whole script

2 months ago
0 Hi, Guys, I Have A Problem With Clearml-Serving. When I Try To Request Sklearn Model (I Try To Reproduce An Example

Yes, you are right. The path is file:///home/jovyan/mlops/model.pkl, it's not a file server. I cant understand how this path has been appeared :))

29 days ago
0 Hi Guys! Can Clearml Upload Models From S3 To A File Server? I Tried To Use The 'Update_Output_Model' Function And Changed Clearml.Conf, But In The End It Gave Me An Error: "Exception Encountered While Uploading [Errno 2] No Such File Or Directory: 'S3://

You are right. Based on this page S3 is supported. My file with this function:

from clearml import Task

task = Task.init(project_name='s3_upload_models', task_name='sklearn', output_uri=True)
task.update_output_model(auto_delete_file=False, name='v0.0.1', model_path='s3://<BUCKET_NAME>/MLOps/models/sklearn/sklearn.pkl')
task.close()

my clearml.conf

aws {
    s3 {
        # default, used for any bucket not specified below
        key: ""
        secret: ""
        region: ""...
5 days ago
0 Hi Guys! Can Clearml Upload Models From S3 To A File Server? I Tried To Use The 'Update_Output_Model' Function And Changed Clearml.Conf, But In The End It Gave Me An Error: "Exception Encountered While Uploading [Errno 2] No Such File Or Directory: 'S3://

@<1523701087100473344:profile|SuccessfulKoala55> Hi, thank you. So, does ClearML have any direct interface to copy/upload files from S3 to its fileserver? Or do we need to download files locally first? I found InputModel.import_model - is this the recommended way to import models from S3 to ClearML?

2 days ago