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, It Seems That The

Hi,
It seems that the package_manager.pip_version has been removed from the https://allegro.ai/docs/references/trains_ref/#agent , although still being shown in the https://github.com/allegroai/trains-agent/blob/master/docs/trains.conf#L52
Is it intended? Can it still be used with trains-agent=0.16.1?

  
  
Posted 4 years ago
Votes Newest

Answers 5


Thanks SuccessfulKoala55 for the answer! One followup question:
When I specify:
agent.package_manager.pip_version: '==20.2.3'
in the trains.conf, I get:
trains_agent: ERROR: Failed parsing /home/machine1/trains.conf (ParseException): Expected end of text, found '=' (at char 326), (line:7, col:37)

  
  
Posted 4 years ago

Yeah, HOCON standard...

  
  
Posted 4 years ago

But according the the example, this syntax should be supported right?

  
  
Posted 4 years ago

Hi JitteryCoyote63 ,
The option is still valid. I believe this was removed by mistake (bad merge of the docs) - we'll update it.
Thanks for the catch 🙂

  
  
Posted 4 years ago

Ok so it seems that the single quote is the reason, using double quotes works

  
  
Posted 4 years ago