Loading
Loading
Neuron registration trends
Finding maximum cliques in large graphs is a computationally hard problem with applications in network analysis, bioinformatics, and circuit design. Traditional centralized approaches struggle to scale: a single solver cannot efficiently handle the diversity of graph structures and time constraints that real-world applications demand, and identifying which algorithms work best for which graph types requires expensive empirical testing across many solvers.
Distributed incentive mechanisms can address this by aggregating diverse problem-solving approaches and rewarding miners who both find optimal solutions and discover novel algorithmic strategies. A decentralized network allows many independent solvers to compete on the same problems, making their approaches visible and comparable in real time. The key insight is that both accuracy and diversity matter: an optimal solution found by a novel method teaches the network more than a standard solution found by a well-known algorithm.
CliqueAI implements this by running validators that curate graph problems from a database and allocate them to miners using difficulty-adjusted sampling. Miners submit solutions that are scored on optimality (measured against peers' results) and uniqueness (rewarding distinct algorithmic approaches). Reputation is tracked via exponential moving average, ensuring that consistent high performers receive more problems while new miners have fair access. All results are logged for real-time monitoring and analysis.
Use cases were auto-generated from the GitHub repository and may not reflect the latest changes.
CliqueAI is an AI-powered maximum clique solver network that uses a four-stage autonomous mechanism for distributed problem solving. Validators curate complex graph problems and intelligently allocate them to miners based on difficulty-adjusted sampling. Miners compete to find maximum cliques in graphs while being scored on both solution optimality and algorithmic diversity, with rewards determined by exponential moving average of historical performance.
CliqueAI operates as a distributed maximum clique solving network with a four-stage mechanism: (1) Problem Selection: Validators select graph problems from a database, categorized by difficulty (Medium d=0.2, Hard d=0.4, Very Hard d=1) based on vertex count and time constraints (6-30s). (2) Miner Selection: Difficulty-adjusted sampling ensures eligible miners receive problems with equal probability P(p) = 1 - exp(-max(0, sqrt(1+1.5) - d(p) - 0.5)), lowering barriers for new participants. (3) Scoring: Dual-metric evaluation using normalized optimality and diversity scores, aggregated with f(m,p) = ω_n(m)*(1+d(p)) + δ_n(m). (4) Weight Setting: Debiased EMA continuously adjusts miner reputation scores (α=0.01) for future problem allocation and rewards. Results are logged to Weights & Biases for monitoring.
The scoring system has three main components: (1) Optimality Score (ω): Evaluates validity of solutions and their relative performance, normalized across all miners for a problem. (2) Diversity Score (δ): Measures solution uniqueness by counting how many miners found identical solutions. (3) Aggregation: Final score f(m,p) = ω_n(m)*(1+d(p)) + δ_n(m), where d(p) is problem difficulty. This ensures performance carries more weight than uniqueness, and harder problems emphasize performance more. Miner ratings use Debiased EMA (α=0.01, ~69 sample half-life) of historical scores for weight setting.
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
CliqueAI - AI-Powered Maximum Clique Solver Network
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)
GPU VRAM recommended at 24GB; CPU minimum 2.5 GHz per core, recommended 3.5 GHz; Storage minimum 10GB (SSD with 1000 IOPS), recommended 100GB with 5000 IOPS; RAM DDR4 type; Minimum swap 4GB, recommended 8GB
GPU VRAM recommended at 24GB; CPU minimum 2.5 GHz per core, recommended 3.5 GHz; Storage minimum 10GB (SSD with 1000 IOPS), recommended 100GB with 5000 IOPS; RAM DDR4 type; Minimum swap 4GB, recommended 8GB
Clone the CliqueAI repository
git clone https://github.com/toptensor/CliqueAI.git && cd CliqueAI
Install Python dependencies
pip install -r requirements.txt
Start the miner with wallet credentials and network configuration
./start_miner.sh --wallet.name <coldkey-name> --wallet.hotkey <hotkey-name> --subtensor.network finney --netuid 83 --logging.info --axon.ip <your-miner-ip> --axon.port <your-miner-port>
Clone the CliqueAI repository
git clone https://github.com/toptensor/CliqueAI.git && cd CliqueAI
Install Python dependencies
pip install -r requirements.txt
Start the validator with wallet credentials and network configuration
./start_validator.sh --wallet.name <coldkey-name> --wallet.hotkey <hotkey-name> --subtensor.network finney --netuid 83 --logging.info --axon.ip <your-validator-ip> --axon.port <your-validator-port>