Skip to main content

bittensor

Project description

Bittensor

Discord Chat PyPI version License: MIT


Internet-scale Neural Networks

DiscordDocsNetworkResearchCode

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

https://app.gitbook.com/@opentensor/s/bittensor/

2. Install

Three ways to install Bittensor.

  1. Through the installer:
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/opentensor/bittensor/master/scripts/install.sh)"
  1. With pip:
$ pip3 install bittensor
  1. From source:
$ git clone https://github.com/opentensor/bittensor.git
$ python3 -m pip install -e bittensor/

3. Using Bittensor

The following examples showcase how to use the Bittensor API for 3 seperate purposes.

3.1. Client

Querying the network for representations.

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

Serving a custom model.

import bittensor
import torch
from transformers import GPT2Model, GPT2Config

model = GPT2Model( GPT2Config(vocab_size = bittensor.__vocab_size__, n_embd = bittensor.__network_dim__ , n_head = 8))
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

Validating models by setting weights.

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 wallets

$ 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 (staging)
  • Akatsuki (testing)
  • Nakamoto (main)
$ export NETWORK=akatsuki 
$ python (..) --subtensor.network $NETWORK
or
>> btcli run --subtensor.network $NETWORK

4.3. Running a template miner

The following command will run Bittensor's template miner

$ cd bittensor
$ python ./bittensor/_neuron/text/template_miner/main.py

or

>> import bittensor
>> bittensor.neurons.text.template_miner.neuron().run()

OR with customized settings

$ cd bittensor
$ python3 ./bittensor/_neuron/text/template_miner/main.py --wallet.name <WALLET NAME> --wallet.hotkey <HOTKEY NAME>

For the full list of settings, please run

$ python3 ~/.bittensor/bittensor/bittensor/_neuron/neurons/text/template_miner/main.py --help

4.4. Running a template server

The template server follows a similar structure as the template miner.

$ cd bittensor
$ python3 ./bittensor/_neuron/text/template_server/main.py --wallet.name <WALLET NAME> --wallet.hotkey <HOTKEY NAME>

or

>> import bittensor
>> bittensor.neurons.text.template_server.neuron().run()

For the full list of settings, please run

$ cd bittensor
$ python3 ./bittensor/_neuron/text/template_server/main.py --help

4.5. Serving an endpoint on the network

Endpoints are server to the bittensor network through 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 is collected/formated by the metagraph.

btcli metagraph

and

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
endpoint_as_tensor = meta.endpoints[0]
endpoint_as_object = meta.endpoint_objs[0]

4.8. Querying others in the network

import bittensor

meta = bittensor.metagraph()
meta.sync()

### Address for the node uid 0
endpoint_0 = meta.endpoints[0]

### Creating the wallet, and dendrite
wallet = bittensor.wallet().create().register()
den = bittensor.dendrite(wallet = wallet)
representations, _, _ = den.forward_text (
    endpoints = endpoint_0,
    inputs = "Hello World"
)

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

This version

2.0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bittensor-2.0.1.tar.gz (115.0 kB view details)

Uploaded Source

Built Distribution

bittensor-2.0.1-py3-none-any.whl (160.7 kB view details)

Uploaded Python 3

File details

Details for the file bittensor-2.0.1.tar.gz.

File metadata

  • Download URL: bittensor-2.0.1.tar.gz
  • Upload date:
  • Size: 115.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.11

File hashes

Hashes for bittensor-2.0.1.tar.gz
Algorithm Hash digest
SHA256 572452872fcae35e93a4acdbe7f33c64db6500d753283c1245d70ea9956fedd2
MD5 191c8fcf86c287d0f4e000b9dde3f9de
BLAKE2b-256 41510e900588470842ade965e87fe8ca863db6d66718f32631377616fe0ae440

See more details on using hashes here.

File details

Details for the file bittensor-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: bittensor-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 160.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.11

File hashes

Hashes for bittensor-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a1ebcbda1330468692e98b25dac36f92823939e29748bcdafcfa49c389a371c0
MD5 9b77019ededbd1c7c818859ea02dd0c7
BLAKE2b-256 52691688468c504e61303544e4299b039b1c98dde0a824ac97ef2b3b6c042366

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page