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, Everyone. I Have A Model, And In

Hello, everyone. I have a model, and in preprocess.py , I have included some print statements. I'm curious to know if it's possible to view these print outputs directly( I want exactly those that can be observable from ClearML Web UI inference console but not from the webUI, I want to see these logs locally), specifically within the containers where the inferencing occurs. If yes, could you please guide me on how to achieve this? If not, could you provide some insights on how to address this issue? Thank you in advance.

  
  
Posted 2 months ago
Votes Newest

Answers 2


Thanks for the prompt response

  
  
Posted 2 months ago

Hi @<1657918706052763648:profile|SillyRobin38>

I have included some print statements

you should see those under the Task of the inference instance.
You can also do:

import clearml
...
def preprocess(...):
  clearml.Logger.current_logger().report_text(...)
  clearml.Logger.current_logger().report_scalar(...)

, specifically within the containers where the inferencing occurs.

it might be that fastapi is capturing the prints...
None

  
  
Posted 2 months ago