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
Hi, I Am Using Clearml By Building It As My Own Server. After The Message Below Was Displayed, The Operation Stopped Without Progress. In Clearml Server, It Is In “Running” State. “Clearml.Task - Info - No Repository Found, Storing Script Code Instead”

Hi, I am using ClearML by building it as my own server.
After the message below was displayed, the operation stopped without progress. In ClearML server, it is in “Running” state.
“clearml.Task - INFO - No repository found, storing script code instead”

  
  
Posted 6 months ago
Votes Newest

Answers 12


python 3.9.12 / clearml 1.13.1 / MacOS Ventura 13.0.1 / torch 2.1.0

  
  
Posted 6 months ago

Does it wok if you remove the Task.init call?

  
  
Posted 6 months ago

yes, here is

  
  
Posted 6 months ago

Is this reproducible? I tried to run the same example code on my machine, and it started training ...
Do you have issues with other pytorch examples? Could you try simple reporting example:
https://github.com/allegroai/clearml/blob/master/examples/reporting/scalar_reporting.py

  
  
Posted 6 months ago

Hi @<1625303806923247616:profile|ItchyCow80>
Could you add some prints ? Is it working without the Task.init call? the code looks okay and the - No repository found, message basically says it logs it as a standalone script (which makes sense)

  
  
Posted 6 months ago

Yes, there are no other messages. And it was recorded on the ClearML server through the above training code. But now it doesn’t work with the message I mentioned.

  
  
Posted 6 months ago

Hi @<1625303806923247616:profile|ItchyCow80> , can you please describe how you're running it? Is it inside a jupyter nokebook? Do you have a code sample?

  
  
Posted 6 months ago

Hmm what's the clearml version? Whats the python version, whats the OS? And pytorch version?

  
  
Posted 6 months ago

Okay. thanks, but this code is already calling it within main().

  
  
Posted 6 months ago

and then, when remove clearml.Logger module, the code works well

  
  
Posted 6 months ago

Could you verify the Task.init call is inside the main function and Not the global scope? We have noticed some issues with global scope calls in some cases

  
  
Posted 6 months ago

when remove Task.init, i found error message “AttributeError: ‘NoneType’ object has no attribute ‘report_scalar’ ” in clearml.Logger module

  
  
Posted 6 months ago
424 Views
12 Answers
6 months ago
6 months ago
Tags