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
11 Answers
897 Views
0 Votes 11 Answers 897 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
one year ago
0 Votes
6 Answers
1K Views
0 Votes 6 Answers 1K Views
one year ago
0 Votes
77 Answers
43K Views
0 Votes 77 Answers 43K 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
0 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 Of The Hyperparameters

and is there any way to capture hydra from a notebook as a Configuration? you don't use the typical @hydra.main() but rather call the compose API , and so far in my testing that doesn't capture the OmegaConf in ClearML

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

but maybe that doesn't matter, actually - it might be one session per host I guess

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

so my reading of the jupyter-kernel-gateway docs is that each session is containerized, so each notebook "session" is totally isolated

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

if I instead change the request url to f"http://{server_info['hostname']}:{server_info['port']}/api/sessions" then it gets a 200 response... however , the response is an empty list

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

but one possible workaround is to try to figure out if it's running in a gateway and then find the only notebook running on that server

one year ago
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

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

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

poking around a little bit, and clearml.backend_interface.task.repo.scriptinfo.ScriptInfo._get_jupyter_notebook_filename() returns None

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

but the only exception handler is for requests.exceptions.SSLError

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

seems like it's using None and that doesn't provide the normal api/sessions endpoint - or, it does, but returns an empty list

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

the server_info is

[{'base_url': '/jupyter/default/',
  'hostname': '0.0.0.0',
  'password': False,
  'pid': 9,
  'port': 8888,
  'root_dir': '/home/sagemaker-user',
  'secure': False,
  'sock': '',
  'token': '',
  'url': '
',
  'version': '1.23.2'}]
one year ago
Show more results compactanswers