opentensor / bittensor-subnet-template

Template Design for a Bittensor subnetwork
MIT License
75 stars 126 forks source link

Fix process_weights_for_netuid edge case #94

Open dylanuys opened 4 months ago

dylanuys commented 4 months ago

This is a bugfix for #93 (issue provides a detailed description of where and how the bug occurs)

The edge case occurs when there is only a single non-zero weight to be processed, which results in len being called on an array scalar. The fix is to reshape said array scaler to make it a sized object.

Here is a recreation of the bug and it's fix:

Screenshot 2024-06-06 at 3 02 27 PM