Loading
Loading

Contributors train specialized expert modules that are aggregated into powerful AI systems, without massive centralized compute.
Neuron registration trends
Training large language models typically requires centralized infrastructure, significant computational resources concentrated in one location, and long training timelines. Practitioners need ways to distribute training work across multiple machines and contributors while maintaining coordination and quality control, but existing distributed training frameworks lack economic incentives for reliable participation.
A decentralized, incentivized network of contributors can split LLM training across independent miners, each specializing in expert groups within a Mixture-of-Experts architecture. Validators coordinate the overall training process, aggregate contributions from all miners, and score each miner's work quality and efficiency. Economic rewards drive miners to contribute high-quality computations, creating a self-sustaining collaborative training environment without central authority.
Subnet 102 implements this model on Bittensor by distributing expert groups across miners using Hivemind for coordination. Validators run FastAPI servers to orchestrate training, aggregate miner outputs, expose performance metrics via Prometheus, and assign TAO rewards based on miner contribution scores. This enables practitioners to train large models collaboratively without needing monolithic hardware or centralized control.
Use cases were auto-generated from the GitHub repository and may not reflect the latest changes.
Subnet 102 is a Bittensor subnet for collaborative, decentralized training of large language models using a Mixture-of-Experts (MoE) architecture. The network distributes model experts across independent miners, with validators coordinating the training process, aggregating contributions, and scoring miners to drive TAO rewards.
Subnet 102 implements a distributed MoE architecture where the LLM is split into expert groups distributed across many independent miners. Miners perform expert computations and contribute to model training. Validators coordinate the training process using a FastAPI server, aggregate miner contributions, compute metrics (exposed via Prometheus), and score miners based on contribution quality and efficiency.
Hivemind is used for decentralized distributed training coordination, and S3/fsspec enables distributed artifact storage.
Validators coordinate the collaborative LLM training process, evaluate miner contributions to expert groups, and drive rewards through a scoring mechanism that incentivizes high-quality distributed training participation.
This information was auto-extracted from the GitHub repository and may be incomplete or out of date. Always refer to the subnet's GitHub repository for the latest instructions.
The sections above were auto-generated from the GitHub repository and may not reflect the latest changes. View repository
Contributors train specialized expert modules that are aggregated into powerful AI systems, without massive centralized compute.
FAQs were auto-generated from the GitHub repository and may not reflect the latest changes.
Holder & total-staked metrics as of 2h ago (hourly snapshot)
8-bit AdamW optimizer (bitsandbytes) used to reduce memory footprint for fitting training steps on smaller GPUs
Install all dependencies including PyTorch, transformers, and distributed training libraries
pip install -r requirements.txt
Install CUDA-optimized PyTorch wheel (install from pytorch.org first as noted in requirements)
pip install torch==2.10.0 --index-url https://download.pytorch.org/whl/cu118
Run miner using the console entry point
weightnet-miner
Install all dependencies including FastAPI, bittensor, and observability tools
pip install -r requirements.txt
Install CUDA-optimized PyTorch wheel
pip install torch==2.10.0 --index-url https://download.pytorch.org/whl/cu118
Run validator using the console entry point
weightnet-validator