bittensor-subnet-template
bittensor-subnet-template copied to clipboard
Template Design for a Bittensor subnetwork
The `cycle_register` seems to have been replaced by register but the docs never got updated.
- Removed loguru from the repo - Defined custom 'events' in the logger Edit: We have added [first_party_loggers](https://github.com/opentensor/bittensor/pull/1797) which will enable this logger not to get removed as third-party. Once...
import is here: [bittensor-subnet-template/template/utils/config.py](https://github.com/opentensor/bittensor-subnet-template/blob/332a4177b6ad85fcf421600758618d9bc4a8b207/template/utils/config.py#L23) but the loguru package is not installed in the requirements.txt
## Description Replace torch with numpy in the subnet template. ## Related Issue(s) / PRs Bittensor: https://github.com/opentensor/bittensor/pull/1786 ## Type of Change - [ ] Bug fix (non-breaking change which fixes...
https://github.com/opentensor/bittensor-subnet-template/blob/332a4177b6ad85fcf421600758618d9bc4a8b207/template/utils/config.py#L23 This import imports from loguru, yet when you install the repo, loguru does not get installed as it's not in the requirements.txt file.
You can find detailed explanation here https://discord.com/channels/799672011265015819/1217642580552978432/1217642580552978432
I am encountering issues while attempting to set up the subnet template locally, as outlined in your documentation (https://github.com/opentensor/bittensor-subnet-template/blob/main/docs/running_on_staging.md). I have run into a couple of challenges that I'd like...
Hello! I was wondering if you could produce some documentations on how we can test miners and validators without having to run a full staging subtensor. Something with quicker dev...
In the current code, the template.base.validator calls self.sync during initialization which leads to the state being saved (calling self.save_state). And it happens before state being loaded in the neuron.validator initialization....