mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-23 21:44:22 +08:00
Fix TypeError in check_cfg() (#9245)
Co-authored-by: UltralyticsAssistant <web@ultralytics.com> Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
This commit is contained in:
parent
3c179f87cb
commit
528793f452
@ -243,7 +243,7 @@ def check_cfg(cfg, hard=True):
|
|||||||
f"'{k}={v}' is of invalid type {type(v).__name__}. "
|
f"'{k}={v}' is of invalid type {type(v).__name__}. "
|
||||||
f"Valid '{k}' types are int (i.e. '{k}=0') or float (i.e. '{k}=0.5')"
|
f"Valid '{k}' types are int (i.e. '{k}=0') or float (i.e. '{k}=0.5')"
|
||||||
)
|
)
|
||||||
cfg[k] = float(v)
|
cfg[k] = v = float(v)
|
||||||
if not (0.0 <= v <= 1.0):
|
if not (0.0 <= v <= 1.0):
|
||||||
raise ValueError(f"'{k}={v}' is an invalid value. " f"Valid '{k}' values are between 0.0 and 1.0.")
|
raise ValueError(f"'{k}={v}' is an invalid value. " f"Valid '{k}' values are between 0.0 and 1.0.")
|
||||||
elif k in CFG_INT_KEYS and not isinstance(v, int):
|
elif k in CFG_INT_KEYS and not isinstance(v, int):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user