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
Profile picture
CleanPelican60
Moderator
1 Question, 7 Answers
  Active since 06 September 2023
  Last activity one year ago

Reputation

0

Badges 1

7 × Eureka!
0 Votes
11 Answers
808 Views
0 Votes 11 Answers 808 Views
Hi everyone, how can I make what’s captured in logging.info () show up in the Console tabs of the experiment details in the WebUI? Currently it seems to capt...
one year ago
0 Hi Everyone, How Can I Make What’S Captured In

I’m running my code line by line in VSCode’s terminal. Here’s my snippet:

one year ago
0 Hi Everyone, How Can I Make What’S Captured In

@<1523701087100473344:profile|SuccessfulKoala55> could you help me with this please? Thanks! 😄

one year ago
0 Hi Everyone, How Can I Make What’S Captured In
 from clearml import Task
import logging

task = Task.init(
    project_name='abc',
    task_name='abc',
    output_uri=True,  # Does not upload anywhere.
)


logger = task.get_logger()

logging.info('This does not show up')
logging.error('This does show up')
one year ago
0 Hi Everyone, How Can I Make What’S Captured In

@<1523701087100473344:profile|SuccessfulKoala55> This is just an example. In my actual use case, the model training code developed by my team uses the logging module, so I didn’t use the task logger. Also I don’t think the task logger supports different levels of logging

one year ago
one year ago
0 Hi Everyone, How Can I Make What’S Captured In

@<1523701087100473344:profile|SuccessfulKoala55> Thank you. How can I override this? Do you mean modifying the logging.conf file? And what settings should I change here to make my logging.info () calls show up? Sorry I’m quite new to this.

one year ago