Loading
Loading

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.
GPU strongly recommended; CPU-only processing takes ~9138 seconds per challenge (not viable). NVIDIA GPU: ~22 seconds per challenge at 22.36 FPS. Apple Silicon: ~140 seconds (development only). NVMe SSD storage recommended for optimal performance.
No GPU required. Processes challenges every 5 minutes, handles concurrent miner connections, performs response evaluation via OpenAI GPT-4o API, updates weights every 21 minutes. Storage grows ~1.5GB per day. Fast SSD I/O critical for database operations.
Clone the Score Vision repository
git clone https://github.com/score-technologies/score-vision.git && cd score-vision
Create and activate Python virtual environment (Python 3.10+ required)
python -m venv venv && source venv/bin/activate
Install Score Vision miner dependencies
pip install -e .[miner]
Create Bittensor coldkey wallet (if not already created)
python -m bittensor wallet new-coldkey --wallet.name <wallet_name>
Create Bittensor hotkey for miner identity
python -m bittensor wallet new-hotkey --wallet.name <wallet_name> --wallet.hotkey <hotkey_name>
Start the miner node on Bittensor subnet 44
python neurons/miner.py --netuid 44 --subtensor.network finney --wallet.name <wallet_name> --wallet.hotkey <hotkey_name>
Clone the Score Vision repository
git clone https://github.com/score-technologies/score-vision.git && cd score-vision
Create and activate Python virtual environment (Python 3.10+ required)
python -m venv venv && source venv/bin/activate
Install Score Vision validator dependencies
pip install -e .[validator]
Set OpenAI API key (required for GPT-4o evaluations)
export OPENAI_API_KEY='sk-...'
Create Bittensor coldkey wallet (if not already created)
python -m bittensor wallet new-coldkey --wallet.name <wallet_name>
Create Bittensor hotkey for validator identity
python -m bittensor wallet new-hotkey --wallet.name <wallet_name> --wallet.hotkey <hotkey_name>
Start validator using Docker Compose (alternative to manual execution)(optional)
docker-compose up -d
Start the validator node on Bittensor subnet 44
python neurons/validator.py --netuid 44 --subtensor.network finney --wallet.name <wallet_name> --wallet.hotkey <hotkey_name>