bittensor
Project description
At Bittensor, we are creating an open, decentralized, peer-to-peer network that functions as a market system for the development of artificial intelligence. Our purpose is not only to accelerate the development of AI by creating an environment optimally condusive to its evolution, but to democratize the global production and use of this valuable commodity. Our aim is to disrupt the status quo: a system that is centrally controlled, inefficient and unsustainable. In developing the Bittensor API, we are allowing engineers to monetize their work, gain access to machine intelligence and join our community of creative, forward-thinking individuals. For more info, read our paper.
- 1. Documentation
- 2. Install
- 3. Using Bittensor
- 4. Features
- 4.1. Creating a bittensor wallet
- 4.2. Selecting the network to join
- 4.3. Running a template miner
- 4.4. Running a template server
- 4.5. Subscription to the network
- 4.6. Syncing with the chain/ Finding the ranks/stake/uids of other nodes
- 4.7. Finding and creating the endpoints for other nodes in the network
- 4.8. Querying others in the network
- 4.9. Creating a Priority Thread Pool for the axon
- 5. License
- 6. Acknowledgments
1. Documentation
https://app.gitbook.com/@opentensor/s/bittensor/
2. Install
Two ways to install Bittensor.
- Through installer:
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opentensor/bittensor/master/scripts/install.sh)"
- Through pip:
$ pip3 install bittensor
3. Using Bittensor
The following examples showcase how to use the Bittensor API for 3 seperate purposes.
3.1. Client
For users that want to explore what is possible using on the Bittensor network.
import bittensor
import torch
wallet = bittensor.wallet().create().register()
graph = bittensor.metagraph().sync()
representations, _ = bittensor.dendrite( wallet = wallet ).forward_text (
endpoints = graph.endpoints,
inputs = "The quick brown fox jumped over the lazy dog"
)
representations = // N tensors with shape (1, 9, 1024)
...
// Distill model.
...
loss.backward() // Accumulate gradients on endpoints.
3.2. Server
For users that want to serve up a custom model onto the Bittensor network
import bittensor
import torch
from transformers import BertModel, BertConfig
model = BertModel( BertConfig(vocab_size = bittensor.__vocab_size__, hidden_size = bittensor.__network_dim__) )
optimizer = torch.optim.SGD( [ {"params": model.parameters()} ], lr = 0.01 )
def forward_text( pubkey, inputs_x ):
return model( inputs_x )
def backward_text( pubkey, inputs_x, grads_dy ):
with torch.enable_grad():
outputs_y = model( inputs_x.to(device) ).last_hidden_state
torch.autograd.backward (
tensors = [ outputs_y.to(device) ],
grad_tensors = [ grads_dy.to(device) ]
)
optimizer.step()
optimizer.zero_grad()
wallet = bittensor.wallet().create().register()
axon = bittensor.axon (
wallet = wallet,
forward_text = forward_text,
backward_text = backward_text
).start().serve()
3.3. Validator
For users that want to validate the models that currently on the Bittensor network
import bittensor
import torch
graph = bittensor.metagraph().sync()
dataset = bittensor.dataset()
chain_weights = torch.ones( [graph.n.item()], dtype = torch.float32 )
for batch in dataset.dataloader( 10 ):
...
// Train chain_weights.
...
bittensor.subtensor().set_weights (
weights = chain_weights,
uids = graph.uids,
wait_for_inclusion = True,
wallet = bittensor.wallet(),
)
4. Features
4.1. CLI
Creating a new wallet.
$ btcli new_coldkey
$ btcli new_hotkey
Listing your wallet.s
$ btcli list
Registering a wallet
$ btcli register
Running a miner.
$ btcli run
Checking balances
$ btcli overview
Checking the incentive mechanism.
$ btcli metagraph
Transfering funds
$ btcli transfer
Staking/Unstaking from a hotkey
$ btcli stake
$ btcli unstake
4.2. Selecting the network to join
There are two open Bittensor networks: Nobunaga, Akatsuki, Nakamoto.
- Nobunaga is the staging network.
- Akatsuki is the main network. The main network will reopen on Bittensor-akatsuki: November 2021.
- Nakamoto is the main network. The main network will reopen on Bittensor-nakamoto: November 2021.
$ export NETWORK=akatsuki
$ python (..) --subtensor.network $NETWORK
4.3. Running a template miner
The following command will run Bittensor's template miner
$ python ~/.bittensor/bittensor/miners/text/template_miner.py
OR with customized settings
$ python ~/.bittensor/bittensor/miners/text/template_miner.py --wallet.name <WALLET NAME> --wallet.hotkey <HOTKEY NAME>
For the full list of settings, please run
$ python ~/.bittensor/bittensor/miners/text/template_miner.py --help
4.4. Running a template server
The template server follows a similar structure as the template miner.
$ python ~/.bittensor/bittensor/miners/text/template_server.py --wallet.name <WALLET NAME> --wallet.hotkey <HOTKEY NAME>
For the full list of settings, please run
$ python ~/.bittensor/bittensor/miners/text/template_server.py --help
4.5. Subscription to the network
The subscription to the bittensor network is done using the axon. We must first create a bittensor wallet and a bittensor axon to serve.
import bittensor
wallet = bittensor.wallet().create().register()
axon = bittensor.axon (
wallet = wallet,
forward_text = forward_text,
backward_text = backward_text
).start().serve()
4.6. Syncing with the chain/ Finding the ranks/stake/uids of other nodes
Information from the chain are collected by the metagraph.
import bittensor
meta = bittensor.metagraph()
meta.sync()
# --- uid ---
print(meta.uids)
# --- hotkeys ---
print(meta.hotkeys)
# --- ranks ---
print(meta.R)
# --- stake ---
print(meta.S)
4.7. Finding and creating the endpoints for other nodes in the network
import bittensor
meta = bittensor.metagraph()
meta.sync()
### Address for the node uid 0
address = meta.endpoints[0]
endpoint = bittensor.endpoint.from_tensor(address)
4.8. Querying others in the network
import bittensor
meta = bittensor.metagraph()
meta.sync()
### Address for the node uid 0
address = meta.endpoints[0]
### Creating the endpoint, wallet, and dendrite
endpoint = bittensor.endpoint.from_tensor(address)
wallet = bittensor.wallet().create().register()
den = bittensor.dendrite(wallet = wallet)
representations, _ = den.forward_text (
endpoints = endpoint,
inputs = "Hello World"
)
4.9. Creating a Priority Thread Pool for the axon
import bittensor
import torch
from nuclei.server import server
model = server(config=config,model_name='bert-base-uncased',pretrained=True)
optimizer = torch.optim.SGD( [ {"params": model.parameters()} ], lr = 0.01 )
threadpool = bittensor.prioritythreadpool(config=config)
metagraph = bittensor.metagraph().sync()
def forward_text( pubkey, inputs_x ):
def call(inputs):
return model.encode_forward( inputs )
uid = metagraph.hotkeys.index(pubkey)
priority = metagraph.S[uid].item()
future = threadpool.submit(call,inputs=inputs_x,priority=priority)
try:
return future.result(timeout= model.config.server.forward_timeout)
except concurrent.futures.TimeoutError :
raise TimeoutError('TimeOutError')
wallet = bittensor.wallet().create().register()
axon = bittensor.axon (
wallet = wallet,
forward_text = forward_text,
).start().serve()
5. License
The MIT License (MIT) Copyright © 2021 Yuma Rao
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
6. Acknowledgments
learning-at-home/hivemind
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for bittensor-1.7.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a85e4db8ccf2b9cb89dfae9a844eaf25b37da0ea55af667ec86df309aa937731 |
|
MD5 | 929568c8cd302bc68c14691cf68c3e9b |
|
BLAKE2b-256 | a0346ab19f0d92480984a906abd9952e86e419c59c153debcdfe175174b8cd5e |