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
Answered
Proper Way To Upload Artifacts

Proper way to upload artifacts
Good day to all. I am running a pytorch lightning notebook with ClearML integration. As was advised in lightning example just invoke task.init and all the rest will be logged. With regards to scalars and hyperparameters all fine but I have two problems:
To complete the task I used task.mark_completed()and got the following message:
<clearml.backend_api.session.callresult.CallResult at 0x7f12f7c7b6d0> 2022-05-25 16:54:57,273 - clearml.Task - WARNING - ### TASK STOPPED - USER ABORTED - STATUS CHANGED ###Whatever I do after that - I can not restart jupyter kernel - it's dead.
2. All of lightning checkpoints are stored locally and were not uploaded to the server.

Please advise what's the proper way to handle those issues.
Thank you!

  
  
Posted one year ago
Votes Newest

Answers


Hi GentleSwallow91 ,

  1. When using jupyter notebooks its best to do task.close() - It will bring the same affect you're interested in
  2. If you would like to upload to the server you need to add the following parameter to your Task.init() The parameter is output_uri. You can read more here - https://clear.ml/docs/latest/docs/references/sdk/task#taskinit
    You can either mark it as True or provide a path to a bucket. The simplest usage would be Task.init(..., output_uri=True)
  
  
Posted one year ago
657 Views
1 Answer
one year ago
one year ago
Tags