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
When the bt.logging is set to debug mode, there are two instances where setting weights can fail, as the code attempts to log an array without a * prefix.
Describe the bug
When the
bt.logging
is set todebug
mode, there are two instances where setting weights can fail, as the code attempts to log an array without a*
prefix.bt.logging.debug("weights", weights)
->bt.logging.debug("weights", *weights)
To Reproduce
--logging.debug
Expected behavior
Setting weights should pass regardless of being in debug mode or not.
Screenshots
No screenshots needed, that is the error thrown
Environment
macOS Sonoma 14.6.1, Apple M3 Pro, Bittensor 8.2.0
Additional context
I believe this issue is also present in
8.1.0
and8.1.1.
The text was updated successfully, but these errors were encountered: