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
LittleReindeer37
Moderator
4 Questions, 80 Answers
  Active since 04 February 2023
  Last activity one year ago

Reputation

0

Badges 1

75 × Eureka!
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K Views
one year ago
0 Votes
11 Answers
1K Views
0 Votes 11 Answers 1K Views
has anyone used dynaconf with ClearML? trying to decide whether to migrate to hydra or stick with dynaconf. would love to take advantage of automatic logging...
one year ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
2 years ago
0 Votes
77 Answers
63K Views
0 Votes 77 Answers 63K Views
What sort of integration is possible with ClearML and SageMaker? On the page describing ClearML Remote it says: > Create a remote development environment (e....
one year ago
one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

yeah, even then it'll run but return 0 notebooks

one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

curious whether it impacts anything besides sagemaker. I'm thinking it's generically a kernel gateway issue, but I'm not sure if other platforms are using that yet

one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

and the only calls to "uri": "/api/sessions" are the ones I made during testing - sagemaker doesn't seem to ever call that itself

one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

I've poked around both the internal URL that Jupyter kernel is running on and some of the files in /sagemaker/.jupyter but no luck so far - I can find plenty of kernel info, but not session

one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page
sh-4.2$ cat /var/log/studio/kernel_gateway.log | head -n10
{"__timestamp__": "2023-02-23T21:48:28.036559Z", "__schema__": "sagemaker.kg.request.schema", "__schema_version__": 1, "__metadata_version__": 1, "account_id": "", "duration": 0.0012829303741455078, "method": "GET", "uri": "/api", "status": 200}
{"__timestamp__": "2023-02-23T21:48:39.111068Z", "__schema__": "sagemaker.kg.request.schema", "__schema_version__": 1, "__metadata_version__": 1, "account_id": "", "duration": 0.00128793...
one year ago
one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page
environ{'PYTHONNOUSERSITE': '0',
        'HOSTNAME': 'gfp-science-ml-t3-medium-d579233e8c4b53bc5ad626f2b385',
        'AWS_CONTAINER_CREDENTIALS_RELATIVE_URI': '/_sagemaker-instance-credentials/xxx',
        'JUPYTER_PATH': '/usr/share/jupyter/',
        'SAGEMAKER_LOG_FILE': '/var/log/studio/kernel_gateway.log',
        'PATH': '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/tmp/miniconda3/condabin:/tmp/anaconda3/condabin:/tmp/miniconda2/condabin:/tmp/anaconda2/condabin'...
one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

right now I can't figure out how to get the session in order to get the notebook path

one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

As another test I ran Jupyter Lab locally using the same custom Docker container that we're using for Sagemaker Studio, and it works great there, just like the native local Jupyter Lab. So it's seemingly not the image, but maybe something to do with how Studio runs it as a kernel.

one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

as best I can tell it'll only have one .ipynb in $HOME with this setup, which may work...

one year ago
0 Hello Community, Can I Run Multiple Clearml Agent From One Machine??

the CLEARML_* variables are all explained here: None

one year ago
0 Hello Community, Can I Run Multiple Clearml Agent From One Machine??

and $QUEUE and $NUM_WORKERS are particular to my setup, but they just give the name of the queue and how many copies of the agent to run

one year ago
one year ago
0 Hello Community, Can I Run Multiple Clearml Agent From One Machine??

the key point is you just loop through the number of workers, set a unique CLEARML_WORKER_ID for each, and then run it in the background

one year ago
0 Hello Community, Can I Run Multiple Clearml Agent From One Machine??

here's my script:

#!/bin/bash
echo "******************** Starting Agent ********************"
echo "******************** Getting ENV Variables ********************"
source /etc/profile.d/env-vars.sh

# test that we can access the API
echo "******************** Waiting for ${CLEARML_API_HOST} connectivity ********************"
curl --retry 10 --retry-delay 10 --retry-connrefused ${CLEARML_API_HOST}/debug.ping

# start the agent
for i in $(seq 1 ${NUM_WORKERS})
do 
    export CLEARML_WORK...
one year ago
one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

weird that it won't return that single session

one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

lots of things like {"__timestamp__": "2023-02-23T23:49:23.285946Z", "__schema__": "sagemaker.kg.request.schema", "__schema_version__": 1, "__metadata_version__": 1, "account_id": "", "duration": 0.0007679462432861328, "method": "GET", "uri": "/api/kernels/6ba227af-ff2c-4b20-89ac-86dcac95e2b2", "status": 200}

one year ago
0 What Sort Of Integration Is Possible With Clearml And Sagemaker? On The Page

and cat /var/log/studio/kernel_gateway.log | grep ipynb comes up empty

one year ago
Show more results compactanswers