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
6 Questions, 19 Answers
  Active since 05 September 2024
  Last activity one hour ago

Reputation

0

Badges 1

19 × Eureka!
0 Votes
1 Answers
1 Views
0 Votes 1 Answers 1 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
14 hours ago
0 Votes
1 Answers
1 Views
0 Votes 1 Answers 1 Views
11 hours ago
0 Votes
4 Answers
1 Views
0 Votes 4 Answers 1 Views
16 hours ago
0 Votes
3 Answers
42 Views
0 Votes 3 Answers 42 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...
6 days ago
0 Votes
15 Answers
67 Views
0 Votes 15 Answers 67 Views
14 days ago
0 Votes
9 Answers
166 Views
0 Votes 9 Answers 166 Views
7 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

7 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

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...

7 days 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...
13 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

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?

6 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> I may not fully understand the functionality of remote code execution. Do I always need to have a git repository for this?

6 days 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

13 days 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...

15 hours 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...

12 hours 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?

14 hours 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

6 days 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)

13 days 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

13 days ago