Open zgjja opened 1 month ago
As title, when Config key object contains something other than str, this code would failed, a config example is in the RTMO in mmpose:
Config
str
mmpose
epoch_attributes={ 280: { "proxy_target_cc": True, "overlaps_power": 1.0, "loss_cls.loss_weight": 2.0, "loss_mle.loss_weight": 5.0, "loss_oks.loss_weight": 10.0, } },
Fix this by converting it to str first
This PR only works when using MLflowVisBackend in a config file like:
MLflowVisBackend
vis_backends = [ dict(type='MLflowVisBackend', save_dir='xxx', tracking_uri='http://xxx:xxx'), ... ]
All committers have signed the CLA.
Motivation
As title, when
Config
key object contains something other thanstr
, this code would failed, a config example is in the RTMO inmmpose
:Modification
Fix this by converting it to
str
firstUse cases (Optional)
This PR only works when using
MLflowVisBackend
in a config file like: