Add initial artifacts support

Fix sub-process support
Fix delete_after_upload option when uploading images
Add logugu support
Fix subsample plots if they are too big
Fix requests for over 15mb
This commit is contained in:
allegroai
2019-07-28 21:04:45 +03:00
parent 637269a340
commit 62bc54d7be
12 changed files with 462 additions and 74 deletions

View File

@@ -15,6 +15,13 @@ logging.warning('This is a warning message')
logging.error('This is an error message')
logging.critical('This is a critical message')
# this is loguru test example
try:
from loguru import logger
logger.debug("That's it, beautiful and simple logging! (using ANSI colors)")
except ImportError:
pass
# get TRAINS logger object for any metrics / reports
logger = task.get_logger()