bittensor-subnet-template icon indicating copy to clipboard operation
bittensor-subnet-template copied to clipboard

Template Design for a Bittensor subnetwork

Results 50 bittensor-subnet-template issues
Sort by recently updated
recently updated
newest added

**Files updated:** - /docs/running_on_staging.md line: 312 - /docs/stream_tutorial/README.md line: 2 - /docs/stream_tutorial/README.md line: 99 - /contrib/STYLE.md line: 61

Changes made in: - /docs/running_on_staging.md ("emmissions" → "emissions") - /docs/stream_tutorial/README.md ("intented" → "intended, indented") - /docs/stream_tutorial/README.md ("recieve" → "receive") - /contrib/STYLE.md ("commiting" → "committing")

I am getting the error `Subtensor returned `SettingWeightsTooFast(Module)` error. This means: `A transactor exceeded the rate limit for setting weights.`.` when boosting the subnet on root

Simple fix to the instructions for running subnets. Previous command had `--profile production` which doesn't work with `localnet.sh`, it should be `--profile release`.

documentation

- implemented batch querying to prevent uid pressure

I fixed an issue with the state not being loaded correctly.

`CARGO_PROFILE` env var was added on PR opentensor/subtensor#1071 . More details on the PR description

```python /template/base/neuron.py:91 in __init__ 88 │ │ │ │ self.config.netuid, subtensor=self.subtensor │ │ 89 │ │ │ ) │ │ 90 │ │ else: │ │ ❱ 91 │ │...