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
SourLion48
Moderator
9 Questions, 30 Answers
  Active since 10 January 2023
  Last activity 2 months ago

Reputation

0

Badges 1

29 × Eureka!
0 Votes
6 Answers
514 Views
0 Votes 6 Answers 514 Views
Hello Everyone, when I try to connect to clearml server but I put a wrong url, I see this error and it keeps on trying. Shouldn't I see some kind of error te...
9 months ago
0 Votes
0 Answers
661 Views
0 Votes 0 Answers 661 Views
Enter user access key: Enter user secret: Verifying credentials ... Error: could not verify credentials: key= secret= Exiting setup without creating configur...
one year ago
0 Votes
25 Answers
141 Views
0 Votes 25 Answers 141 Views
2 months ago
0 Votes
0 Answers
527 Views
0 Votes 0 Answers 527 Views
That is after I copied and pasted my configuration from clearml server.
one year ago
0 Votes
6 Answers
605 Views
0 Votes 6 Answers 605 Views
Hello everyone, When I try to connect to my clearml server using clearml-init, I encounter this error.
one year ago
0 Votes
4 Answers
166 Views
0 Votes 4 Answers 166 Views
Hello everybody. I have a question about autoscaler. I have an autoscaler that is started by a python script. When I start the task with task.enqueue('queue'...
2 months ago
0 Votes
2 Answers
553 Views
0 Votes 2 Answers 553 Views
That is from documentation, https://clear.ml/docs/latest/docs/fundamentals/logger/ . How can I stop the earlier debug samples from being deleted even if I tr...
one year ago
0 Votes
4 Answers
565 Views
0 Votes 4 Answers 565 Views
Hello, how can increase the number of debug samples to be recorded in one training?
one year ago
0 Votes
0 Answers
27 Views
0 Votes 0 Answers 27 Views
one year ago
0 Hello, I Have Clearml Autoscaler Setup. Previously, When A New Task Comes Up, An Already Running Worker (If There Is), Will Take It, Apply The New Commit And Run The Task. Now, I Get An Error. So, I Can'T Run A Task On An Already Running Worker. It Has To
configurations:
  extra_clearml_conf: 'sdk.aws.s3.region="us-west-2"
                        agent.extra_docker_arguments=["--shm-size=90g"]
                        agent.extra_docker_shell_script=["git config --global credential.helper cache --timeout=604800",]'
  extra_trains_conf: ''
  extra_vm_bash_script: ''
  queues:
    gcp-v100:
    - - gcp-v100
      - 4
    gcp-l4:
      - - gcp-l4
        - 4
    gcp-cpu:
    - - gcp-cpu
      - 4
  resource_configurations:
    gcp-v100:
    ...
2 months ago
0 Hello, I Have Clearml Autoscaler Setup. Previously, When A New Task Comes Up, An Already Running Worker (If There Is), Will Take It, Apply The New Commit And Run The Task. Now, I Get An Error. So, I Can'T Run A Task On An Already Running Worker. It Has To
import yaml
from clearml.automation.auto_scaler import AutoScaler, ScalerConfig
from gcp_driver import GCPDriver

with open('gcp_autoscaler.yaml') as f:
    conf = yaml.load(f, Loader=yaml.SafeLoader)

    driver = GCPDriver.from_config(conf)

    conf = ScalerConfig.from_config(conf)
    autoscaler = AutoScaler(conf, driver)
    autoscaler.start()

That is the python code.

2 months ago
0 Hello, I Have Clearml Autoscaler Setup. Previously, When A New Task Comes Up, An Already Running Worker (If There Is), Will Take It, Apply The New Commit And Run The Task. Now, I Get An Error. So, I Can'T Run A Task On An Already Running Worker. It Has To
created virtual environment CPython3.10.13.final.0-64 in 511ms
  creator CPython3Posix(dest=/root/.clearml/venvs-builds/3.10, clear=False, no_vcs_ignore=False, global=True)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/root/.local/share/virtualenv)
    added seed packages: pip==23.3.1, setuptools==69.0.2, wheel==0.42.0
  activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator
...
2 months ago
0 Hello, I Have Clearml Autoscaler Setup. Previously, When A New Task Comes Up, An Already Running Worker (If There Is), Will Take It, Apply The New Commit And Run The Task. Now, I Get An Error. So, I Can'T Run A Task On An Already Running Worker. It Has To

or can I put something like the following in clearml.conf?

cat << EOF >> ~/clearml.conf
agent.enable_git_ask_pass=true
agent.git_user="{GIT_USER}"
agent.git_pass="{GIT_PASSWORD}"

The

agent.git_user="{GIT_USER}"
agent.git_pass="{GIT_PASSWORD}"

already existed. I only added

`agent.enable_git_ask_pass=true
2 months ago
0 Hello, I Have Clearml Autoscaler Setup. Previously, When A New Task Comes Up, An Already Running Worker (If There Is), Will Take It, Apply The New Commit And Run The Task. Now, I Get An Error. So, I Can'T Run A Task On An Already Running Worker. It Has To

@<1523701070390366208:profile|CostlyOstrich36> I have been exploring. The problem seems to be when the docker container is using the cached dir.

Using cached repository in "/root/.clearml/vcs-cache/****.git.0081a6bc4d7afe6adde369e6aeab9406/****.git"

When inside that directory and tries to fetch, it asks for credentials. when it clones, it doesn't.

cloning: git@github.com:****/****.git
Using user/pass credentials - replacing ssh url 'git@github.com:****/****.git' with https ...
2 months ago
0 That Is From Documentation,

Thanks CostlyOstrich36
But, I am not using report_media() function. The debug samples (confusion matrices) are saved from tensorboard.

one year ago
0 Hello Everyone, When I Try To Connect To Clearml Server But I Put A Wrong Url, I See This Error And It Keeps On Trying. Shouldn'T I See Some Kind Of Error Telling Me The Url Is Wrong?

I am passing my credentials as well. So, if it tries with the credentials and it doesn't work, may be try twice, may be three times, then raise an error. I don't know a lot about libraries, but the error that I am seeing is a bit confusing now.

9 months ago
0 Hello Everyone, When I Try To Connect To My Clearml Server Using Clearml-Init, I Encounter This Error.

It doesn't work when I insert the credentilas individually either. I am using EC2 as clearml server.

one year ago
0 Hello Everyone, When I Try To Connect To My Clearml Server Using Clearml-Init, I Encounter This Error.

Sorry, It just worked now. I think It was slow internet connection issue. It just went away today.

one year ago