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

Reputation

0

Badges 1

15 × Eureka!
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
AgitatedDove14
4 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
PR for PyTorch Lightning integration is welcomed now. https://github.com/PyTorchLightning/pytorch-lightning/issues/929
4 years ago
0 Votes
9 Answers
1K Views
0 Votes 9 Answers 1K Views
pytorch-lightning-bols.loggers.TrainsLogger creates new ids even if reuse_last_task_id=True is set. How can I force it to reuse last ids?
4 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
I'm facing a problem that I can't see the scalar logs with the message "Failed to get Scalar Chart". The following image is a result of examples/manual_repor...
4 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
I made PR for PyTorch Lightning integration. https://github.com/bmartinn/pytorch-lightning/pull/1
4 years ago
0 Votes
0 Answers
1K Views
0 Votes 0 Answers 1K Views
AgitatedDove14 It was caused by AdBlocker, sorry 😅
4 years ago
0 Votes
16 Answers
728 Views
0 Votes 16 Answers 728 Views
Hi, I’m trying to upload output model files (like .pth) to ClearML server. Assume my train.py is as follows: from clearml import Task task = Task.init( proje...
10 months ago
0 Hi, I’M Trying To Upload Output Model Files (Like .Pth) To Clearml Server. Assume My

@<1523701435869433856:profile|SmugDolphin23> Sorry for my late response.

I've tried OutputModel in local and SageMaker like:

task = Task(...)
output_model = OutputModel(task=task, framework="PyTorch")
output_model.set_upload_destination(uri="my file server URI")

...

for path in Path(cfg.work_dir).glob("**/*.pth"):
    output_model.update_weights(str(path))

and got the results in both envs.

2024-03-01 10:45:44,592 - clearml.storage - ERROR - Exception encountered while upl...
9 months ago
0 Hi, I’M Trying To Upload Output Model Files (Like .Pth) To Clearml Server. Assume My

hmm, It seems that 1.10.2 also doesn’t work.
manual upload is ok, model save capture is not.

10 months ago
0 Hi, I’M Trying To Upload Output Model Files (Like .Pth) To Clearml Server. Assume My

A few corrections to the original post.

When I set CLEARML_DEFAULT_OUTPUT_URI on SageMaker, the model save was not captured and nothing was showing on the artifact tab.
If CLEARML_DEFAULT_OUTPUT_URI is not set, the model save is captured, but it only records the file path and does not upload the entity.

10 months ago
0 Pytorch-Lightning-Bols.Loggers.Trainslogger

I don't mean continuous training but I want to know about your plans for it 😋

4 years ago
0 Hi, I’M Trying To Upload Output Model Files (Like .Pth) To Clearml Server. Assume My

Hi @<1523701435869433856:profile|SmugDolphin23> 👋
Yes, I can upload a Python file by the following line.

task.upload_artifact(name="config", artifact_object="config.py")

The artifact was uploaded to the file server with or without output_uri specification.

10 months ago
0 Hi, I’M Trying To Upload Output Model Files (Like .Pth) To Clearml Server. Assume My

SDK: 1.14.1
WebApp: 1.14.0-431
Server: 1.14.0-431
API: 2.28

10 months ago
0 Pytorch-Lightning-Bols.Loggers.Trainslogger

In my case, I write codes and run single batch train-val, which contains model saving, in developing phase. I want TRAINS to overwrite the dev runs for keeping dashboard clean.

4 years ago
0 Hi, I’M Trying To Upload Output Model Files (Like .Pth) To Clearml Server. Assume My

I’ve just try hard-coding but the result doesn’t change.

10 months ago
0 Hi, I’M Trying To Upload Output Model Files (Like .Pth) To Clearml Server. Assume My

It doesn’t work…

task = Task.init(
    project_name="my_project",
    task_name="my_task",
    output_uri=os.getenv("CLEARML_DEFAULT_OUTPUT_URI", None),
)
10 months ago
0 Pytorch-Lightning-Bols.Loggers.Trainslogger

I would like to confirm just in case.
In the desired behavior, reuse_last_task_id=True forces it for any intervals?

4 years ago
0 Pytorch-Lightning-Bols.Loggers.Trainslogger

if you have any idea to reuse id even if models are outputted, please tell me thx

4 years ago
0 Pytorch-Lightning-Bols.Loggers.Trainslogger

oh I got it. my codes output models and the task catch it automatically.

4 years ago
0 Pytorch-Lightning-Bols.Loggers.Trainslogger

maybe the arguments is simply passed to Task.init()
self._trains = Task.init( project_name=project_name, task_name=task_name, task_type=task_type, reuse_last_task_id=reuse_last_task_id, output_uri=output_uri, auto_connect_arg_parser=auto_connect_arg_parser, auto_connect_frameworks=auto_connect_frameworks, auto_resource_monitoring=auto_resource_monitoring )

4 years ago