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
3 Questions, 16 Answers
  Active since 05 September 2024
  Last activity 4 days ago

Reputation

0

Badges 1

16 × Eureka!
0 Votes
9 Answers
59 Views
0 Votes 9 Answers 59 Views
5 days ago
0 Votes
15 Answers
60 Views
0 Votes 15 Answers 60 Views
12 days ago
0 Votes
3 Answers
31 Views
0 Votes 3 Answers 31 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...
4 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

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

4 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

11 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

11 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)

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

5 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?

4 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?

4 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...
11 days ago