Using multiple loggers in the config file when training #9562
-
I made a custom logger which I added to the config.cfg file: It works and logs the values to mlflow but it does not show the results in the console. I want spacy to both log it to mlflow and print it to the console. Is there a way I could do this? I tried logging 2 loggers by: but it did not work, gave me this error: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I don't believe there's a way to specify multiple loggers at the moment. What you can do is write a custom logger that sends data to both the console and the mlflow logger. |
Beta Was this translation helpful? Give feedback.
I don't believe there's a way to specify multiple loggers at the moment. What you can do is write a custom logger that sends data to both the console and the mlflow logger.