You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ludovico Bianchi edited this page Jul 11, 2022
·
1 revision
importlogging_logger=logging.getLogger(__name__)
defcreate_model(name: str):
_logger.info(f"Start creating model {name}")
m= ...
_logger.info(f"Creation of model {name} completed")
returnm