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 one year ago
Votes Newest

Answers 7


Hi BoredHedgehog47 , what import errors are you getting?

  
  
Posted one year ago

they are pathing errors to in my repo

  
  
Posted one year ago

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

  
  
Posted one year ago

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

  
  
Posted one year ago

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

  
  
Posted one year ago

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

  
  
Posted one year 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 one year ago
528 Views
7 Answers
one year ago
one year ago
Tags