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
MinuteMouse44
Moderator
5 Questions, 31 Answers
  Active since 28 May 2024
  Last activity 11 months ago

Reputation

0

Badges 1

27 × Eureka!
0 Votes
19 Answers
1K Views
0 Votes 19 Answers 1K Views
Hello! I faced an issue with environment variables with remote agent I set the in clearml.conf in section: development.apply_environment Like this: apply_env...
one year ago
0 Votes
5 Answers
864 Views
0 Votes 5 Answers 864 Views
Agent and env variables (this is almost duplicate thread ) I’m running simple script: import os from dotenv import load_dotenv from clearml import Dataset, T...
one year ago
0 Votes
5 Answers
1K Views
0 Votes 5 Answers 1K Views
one year ago
0 Votes
7 Answers
949 Views
0 Votes 7 Answers 949 Views
Hi I’m trying to schedule the tasks execution using clearml.automation.TaskScheduler But the task never starts execution, it always hangs in the ‘pending’ st...
one year ago
0 Votes
15 Answers
2K Views
0 Votes 15 Answers 2K Views
Hello everyone! I’m trying to setup non aws s3 to store datasets and get and error: 2024-05-27 16:15:52,241 - clearml.storage - ERROR - Failed uploading: Fai...
aws
one year ago
0 Hello! I Faced An Issue With Environment Variables With Remote Agent I Set The In Clearml.Conf In Section:

what if I can’t use the docker mode because the agent is already running inside docker

one year ago
0 What The Best Practice To Configure Clearml-Agent In The Way To Don’T Install Packages That Are Already Available Every Time? I Use Nvidia-Docker To Run The Train Script For Example. I Initialized Clearml-Agent Inside A Running Nvidia-Docker Container

And one more thing(seems like agent didn’t pull all necessary code)
I’m trying to run task export.py with remote agent. But in this script there are some imports from my other .py scripts:

import torch - this module should be installed with pip
from from generate_triton_config import generate_configs - this import from generate_triton_config.py 

And it also raise an error:

Traceback (most recent call last):
  File "/root/.clearml/venvs-builds/3.10/code/export.py", line 8,...
one year ago
0 What The Best Practice To Configure Clearml-Agent In The Way To Don’T Install Packages That Are Already Available Every Time? I Use Nvidia-Docker To Run The Train Script For Example. I Initialized Clearml-Agent Inside A Running Nvidia-Docker Container

Thank you!
That works

CLEARML_AGENT_SKIP_PIP_VENV_INSTALL & CLEARML_AGENT_SKIP_PYTHON_ENV_INSTALL

But still have a problem with, agent didn’t pull all necessary code
Do you have any ideas why that happens?
In “Installed packages” section, I see:

# Local modules found - skipping:
# generate_triton_config == ../generate_triton_config.py

Mb this relate somehow?

one year ago
0 What The Best Practice To Configure Clearml-Agent In The Way To Don’T Install Packages That Are Already Available Every Time? I Use Nvidia-Docker To Run The Train Script For Example. I Initialized Clearml-Agent Inside A Running Nvidia-Docker Container

It even failed to create correct enviroment
And when it tried to execute import torch
It raise large error:

ImportError: cannot import name '_get_sequence_nr' from 'torch._C._autograd' (unknown location) 
one year ago
0 Hello Everyone! I’M Trying To Setup Non Aws S3 To Store Datasets And Get And Error:

@<1523701070390366208:profile|CostlyOstrich36> mb any other ideas, how to fix? 🫠

one year ago
0 Hi I’M Trying To Schedule The Tasks Execution Using
from clearml import Task
from clearml.automation import TaskScheduler


# Create the scheduler and make it poll quickly for demo purpose
scheduler = TaskScheduler(
    sync_frequency_minutes=1,
    force_create_task_project='name',
    force_create_task_name='Scheduler'
)

# Get the task that we want to rerun
# task_to_schedule = Task.get_task(project_name='name', task_name='')
task_to_schedule = Task.get_task(task_id='8ee7b88505a...')

# Add the scheduler based on task above and overri...
one year ago
0 Hi I’M Trying To Schedule The Tasks Execution Using

yes, if I manually put any task in this queue, it starts without problems

one year ago
0 I'M Having A Hard Time With Git Cloning + Cache For A Private Repo Accessed Via Personal Access Token. This Happens 100% Of The Time, Across Both Bitbucket + Github. I Have A Simple "Hello World" Task In A Private Repo. The Worker Is Running In A Docker

Okay thank you so much
But I think I solve problem with credentials by using clearml_agent v1.8.1rc2
But now I get an issue with local python modules 🫠
Even when I set

agent.skip_pip_venv_install = 1
agent.skip_python_env_install = /usr/bin/python

In worker logs I see:

Environment setup completed successfully
Starting Task Execution:
one year ago
one year ago
0 Agent And Env Variables (This Is Almost Duplicate

@<1523701070390366208:profile|CostlyOstrich36> yes, I use same clearml.conf file

one year ago
0 Agent And Env Variables (This Is Almost Duplicate
sdk{
    environment{
                test_var1: "var1_value"
                test_var2: "var2_value"
one year ago
0 Hello! I Faced An Issue With Environment Variables With Remote Agent I Set The In Clearml.Conf In Section:

Sorry, I didn’t really understand about top level
What do you mean?

one year ago
one year ago
0 Hello Everyone! I’M Trying To Setup Non Aws S3 To Store Datasets And Get And Error:

Get the same result
But then I will have an empty credentials inside S3BucketConfigurations , here

Upd: if I delete keys ‘key’ and ‘secret_key’ from top section I got

2024-05-27 16:29:51,597 - clearml.storage - ERROR - Failed creating storage object 
 Reason: Missing key and secret for S3 storage access (
)
one year ago
one year ago
0 Hi Everyone! Is There A Way To Store Env_Vars Or Secrets In Clearml When We Use Remote Agent To Run The Task? Actually I Have Too Many Envs That Are Confidential.

@<1709740168430227456:profile|HomelyBluewhale47> @<1523701070390366208:profile|CostlyOstrich36> any updates here?
Also face same problem, envs that I set in clearml.conf can’t be used when I run agent

one year ago
0 Hello! I Faced An Issue With Environment Variables With Remote Agent I Set The In Clearml.Conf In Section:

Thank you this works 🙌

But by the way, why agent didn’t read env variables from clearml.conf file ?

one year ago
0 Hi I’M Trying To Schedule The Tasks Execution Using

yes I see this tast in queue, but they just ‘pending’

one year ago
0 Hello! I Faced An Issue With Environment Variables With Remote Agent I Set The In Clearml.Conf In Section:

But as I said before it seems that agent got them:

And in agent log I can see:

agent.environment.login = ****
agent.environment.pass = ****
one year ago
0 Hello! I Faced An Issue With Environment Variables With Remote Agent I Set The In Clearml.Conf In Section:

@<1523701070390366208:profile|CostlyOstrich36> any updates?
Is it possible to avoid using docker mode?

one year ago
0 Hello Everyone! I’M Trying To Setup Non Aws S3 To Store Datasets And Get And Error:

I tried:

1. output_url = "
"
2. output_url = "
"
3. output_url = "s3://"
one year ago
0 Hello Everyone! I’M Trying To Setup Non Aws S3 To Store Datasets And Get And Error:

Now I use same config, as in original question:

s3 {
                key: "key"
                secret: "sec_key"
    
                credentials: [
                    {
                        host: "host:port"
                        bucket: "bucket_name"
                        key: "key"
                        secret: "sec_key"
                        multipart: false
                        secure: false
                    }
                ]
            } 

And pass output...

one year ago
0 Hello! I Faced An Issue With Environment Variables With Remote Agent I Set The In Clearml.Conf In Section:

@<1523701070390366208:profile|CostlyOstrich36>
And if I use docker mode, an agent will read env variables from clearml.conf file?

one year ago
0 Hello Everyone! I’M Trying To Setup Non Aws S3 To Store Datasets And Get And Error:

@<1523701070390366208:profile|CostlyOstrich36> looks the same to me, I use it this example to setup my confign
Or is there any diff?

one year ago
one year ago
0 Hello Everyone! I’M Trying To Setup Non Aws S3 To Store Datasets And Get And Error:

I think the sdk is aware that this is not amazon, because when I specify the ‘region’ field then it ignores my host and uses the amazon host

one year ago
Show more results compactanswers