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
Hello, I Have An Ml Project That Is Not On Git. It Is Separated Into Several Files:

Hello,
I have an ML project that is not on git. It is separated into several files:

training.py
data.py
preprocessing.py
global_config.py

I can monitor it easily through clearML. Everything works very well.
Now I am implementing a class for hyperparameter optimization.
I implemented the whole class, but when I execute it, passing the id of the task I want to base it on, it does not find the files (example: global_config.py).
I understand this because, as I understand it, it only monitored "training.py" where Task.init is.
Is there any way to link these other files to training.py? So it understands that it needs these files to run training.py?
Is git the solution?

Note: when running optimizer.start_locally(), this error occurs:

Traceback (most recent call last):
  File "C:\Users\MATEUS~1.CAS\AppData\Local\Temp\tmpn75k0lbv.py", line 22, in <module>
    import global_config
  
  
Posted 11 months ago
Votes Newest

Answers 2


Hi @<1564422644407734272:profile|DistressedCoyote60>

I have an ML project that is not on git. It is separated into several files:

Yes you are correct , if your code is composed of multiple files, you have to have a git repo for the agent to be able to run it.
😞
That said, it is free on an any of these services github/bitbucket/gitlab 🙂

  
  
Posted 11 months ago

Maybe this is the answer: None

  
  
Posted 11 months ago