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
Is There Any Additional Configuration Needed For

Is there any additional configuration needed for PYTHONPATH to be setup properly in the clearml agent? I'm getting python import errors from the root directory of my github repo.

  
  
Posted 2 years ago
Votes Newest

Answers 7


for example, if my github repo is project.git and my structure is project/utils/tool.py

  
  
Posted 2 years ago

You can't, since the repository is cloned to an ad-hoc location (not a fixed location). The best thing to do is use local imports (i.e. import sibling modules)

  
  
Posted 2 years ago

Hi BoredHedgehog47 , what import errors are you getting?

  
  
Posted 2 years ago

hmm how would I add that to PYTHONPATH? Can that be done in the SETUP SHELL SCRIPT window?

  
  
Posted 2 years ago

I'm getting import errors when I do, from project.utils import tool all from the working directory of project

  
  
Posted 2 years ago

they are pathing errors to in my repo

  
  
Posted 2 years ago

I don't think you can import from you project as it is not part of the pythonpath

  
  
Posted 2 years ago
936 Views
7 Answers
2 years ago
one year ago
Tags