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

Reputation

0

Badges 1

15 × Eureka!
0 Votes
0 Answers
756 Views
0 Votes 0 Answers 756 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
9 Answers
651 Views
0 Votes 9 Answers 651 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?
3 years ago
0 Votes
0 Answers
715 Views
0 Votes 0 Answers 715 Views
PR for PyTorch Lightning integration is welcomed now. https://github.com/PyTorchLightning/pytorch-lightning/issues/929
4 years ago
0 Votes
0 Answers
854 Views
0 Votes 0 Answers 854 Views
AgitatedDove14 It was caused by AdBlocker, sorry 😅
4 years ago
0 Votes
0 Answers
713 Views
0 Votes 0 Answers 713 Views
I made PR for PyTorch Lightning integration. https://github.com/bmartinn/pytorch-lightning/pull/1
4 years ago
0 Votes
0 Answers
719 Views
0 Votes 0 Answers 719 Views
AgitatedDove14
4 years ago
0 Votes
16 Answers
147 Views
0 Votes 16 Answers 147 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...
2 months 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 )

3 years 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.

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

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

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

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

3 years 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...
one month 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.

3 years 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?

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

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

3 years 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.

2 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

2 months 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.

2 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),
)
2 months 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.

2 months ago