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
YummyElephant76
Moderator
9 Questions, 26 Answers
  Active since 13 February 2023
  Last activity 10 months ago

Reputation

0

Badges 1

26 × Eureka!
0 Votes
6 Answers
615 Views
0 Votes 6 Answers 615 Views
Hello everyone! is there a way to deploy ClearML Agent in services mode using the k8s glue helm chart?
one year ago
0 Votes
7 Answers
541 Views
0 Votes 7 Answers 541 Views
Hey everyone, We're running a remote execution (K8S agent) ClearML pipeline from Jupyterhub, but when the agent prepares the environment, it installs a diffe...
10 months ago
0 Votes
8 Answers
747 Views
0 Votes 8 Answers 747 Views
Hello! I've set sdk.aws.s3.verify to false, but im still getting [SSL: CERTIFICATE_VERIFY_FAILED]. I've added two prints, one for boto_kwargs in clearml.stor...
one year ago
0 Votes
17 Answers
623 Views
0 Votes 17 Answers 623 Views
Hello, I'm using a virtual environment inside my Jupyterhub server along with ClearML. Whenever I create any task the "uncommitted changes" are the contents ...
one year ago
0 Votes
1 Answers
598 Views
0 Votes 1 Answers 598 Views
Hello, where can I find the Dockerfile for these images? None None None
one year ago
0 Votes
3 Answers
577 Views
0 Votes 3 Answers 577 Views
Hey everyone, We're running a remote execution (K8S agent) ClearML pipeline from Jupyterhub, but when the agent prepares the environment, it installs a diffe...
10 months ago
0 Votes
2 Answers
519 Views
0 Votes 2 Answers 519 Views
Any updates on this issue?
one year ago
0 Votes
1 Answers
636 Views
0 Votes 1 Answers 636 Views
Hey, i've spun up ClearML Serving using the example here: None When running curl -X POST " None " -H "accept: application/json" -H "Content-Type: application...
one year ago
0 Votes
6 Answers
679 Views
0 Votes 6 Answers 679 Views
Heya, I'm getting this error in clearml-serving-triton using the helm chart: CLEARML_SERVING_TASK_ID=8962... CLEARML_TRITON_POLL_FREQ=1.0 CLEARML_TRITON_METR...
one year ago
0 Hello, I'M Using A Virtual Environment Inside My Jupyterhub Server Along With Clearml. Whenever I Create Any Task The "Uncommitted Changes" Are The Contents Of

When working outside of my venv I can see my jupyter notebook inside "uncommitted changes" and also as an artifact. When inside a venv I dont see it as an artifact and all I see under "uncommited changes" is the contents of ipykernel_launcher.py

one year ago
0 Hello Everyone! Is There A Way To Deploy Clearml Agent In Services Mode Using The K8S Glue Helm Chart?

I need ClearML Agent to connect to a pipeline, from what I understood you needed an agent running in services mode to do that.

one year ago
0 Hello Everyone! Is There A Way To Deploy Clearml Agent In Services Mode Using The K8S Glue Helm Chart?

I see, so I simply need to run k8s glue and connect it to the "services" queue?

one year ago
0 Hello! I'Ve Set Sdk.Aws.S3.Verify To False, But Im Still Getting [Ssl: Certificate_Verify_Failed]. I'Ve Added Two Prints, One For

I have, _reload() prints ('verify', '/etc/ssl/certs') while __init__() simply prints {'endpoint_url': ' None ', 'use_ssl': True, 'verify': True, 'region_name:' None, 'config': <botocore.config.Config object at 0x7f4408d08a00>}

one year ago
0 Hello! I'Ve Set Sdk.Aws.S3.Verify To False, But Im Still Getting [Ssl: Certificate_Verify_Failed]. I'Ve Added Two Prints, One For
api {
    web_server: 

    api_server: 

    files_server: 

    credentials {
        access_key: key
        secret_key: secret
    }
}

sdk {
    aws {
        s3 {
            bucket: bucket-name
            key: my-key
            secret: my-secret
            secure: true
            verify: "etc/ssl/certs/ca-certificates.crt"
            multipart: false
        }
    }
}
one year ago
one year ago
0 Hello, I'M Using A Virtual Environment Inside My Jupyterhub Server Along With Clearml. Whenever I Create Any Task The "Uncommitted Changes" Are The Contents Of

When I'm using the default python kernel for notebooks it does store it successfully, however when switching to a venv it doesn't.

one year ago
0 Any Updates On This Issue?

alright, thanks

one year ago
0 Hey, I'Ve Spun Up Clearml Serving Using The Example Here:

Nevermind, i messed up the preprocessing

one year ago
0 Heya, I'M Getting This Error In Clearml-Serving-Triton Using The Helm Chart:

I'm using the helm chart, is that not part of it?

one year ago
0 Hello, I'M Using A Virtual Environment Inside My Jupyterhub Server Along With Clearml. Whenever I Create Any Task The "Uncommitted Changes" Are The Contents Of

I should mention that reporting artifacts and everything else works. I'm just not seeing the changes inside the web ui.

one year ago
0 Hello, I'M Using A Virtual Environment Inside My Jupyterhub Server Along With Clearml. Whenever I Create Any Task The "Uncommitted Changes" Are The Contents Of

@<1523701205467926528:profile|AgitatedDove14> hey, we found out what was causing that issue
when a new venv is created it does not contain any python libraries, so when ClearML was trying to list the current running jupyter servers (using the Jupyter Notebook python library) it was failing since that library does not exist.
Not sure why there were no warnings or errors regarding it...
We fixed it by running pip install notebook inside the venv, and it worked!
CC: @<1564422819012415488:p...

12 months ago
0 Hello! I'Ve Set Sdk.Aws.S3.Verify To False, But Im Still Getting [Ssl: Certificate_Verify_Failed]. I'Ve Added Two Prints, One For

Originally I wanted to use the environment variable AWS_CA_BUNDLE=/etc/ssl/certs however it seems boto3 doesn't respect that variable from my testing

one year ago
10 months ago
10 months ago
0 Hello, I'M Using A Virtual Environment Inside My Jupyterhub Server Along With Clearml. Whenever I Create Any Task The "Uncommitted Changes" Are The Contents Of

seems like an issue when using ipykernel...
steps to reproduce:|
virtualenv my_env
source my_env/bin/activate
pip install ipykernl
python -m ipykernel install --user --name=my_env

then switch the kernel to the new ipykernel to reproduce

one year ago