How do I get rid of the message: Expected integer value from monitor, but got “” when using a launch agent . It appears in between polling. The agent itself worked as expected but the repeated message in the terminal is annoying.
Many thanks
How do I get rid of the message: Expected integer value from monitor, but got “” when using a launch agent . It appears in between polling. The agent itself worked as expected but the repeated message in the terminal is annoying.
Many thanks
hey @tim-fernandezhart - would running something like the following help?
import os
os.environ["WANDB_SHOW_INFO"]="False"
or export WANDB_SHOW_INFO=False
This setup however silences all future info messages for wandb runs within that script.
Thanks, @uma-wandb but that ONLY seemed to suppress the wandb messages and left eh annoying Expected integer value from monitor, but got “” .
Here is the sort of thing I am experiencing:
@tim-fernandezhart The error message suggests that the monitor is expected to return an integer value, but it’s getting an empty string ""
instead.
Are you using any model callbacks or integrations? This usually happens where you specify a monitor
parameter to track a certain metric. If the metric is not correctly defined or returned from your training_step
, validation_step
, or test_step
, whichever package you’re using may not be able to find it and hence return an empty string
Hi Tim, since we have not heard back from you we are going to close this request. If you would like to re-open the conversation, please let us know!