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.
1.5B model in bfloat16 has ~2GB footprint. P2P activation cache uses POSIX SharedMemory for zero-copy transfer to receiver subprocess.
Validators are lightweight spot-checkers; can run single or multiple instances for scalability. Configurable host/port with automatic port allocation.
Run setup script and select Miner option
bash setup.sh
Configure environment variables (VALIDATOR_HOST, VALIDATOR_PORT, etc.)
# Edit .env file with configuration
Start miner process
bash ./start_miner.sh
Optionally run miner in background with PM2(optional)
pm2 start pm2/miner.config.js
Run setup script and select Validator option
bash setup.sh
Configure environment variables (VALIDATOR_HOST, VALIDATOR_PORT, VALIDATOR_COUNT)
# Edit .env file with configuration
Start validator instance(s) with default settings
bash ./start_validators.sh
Or start multiple validators with custom host/port/count(optional)
bash ./start_validators.sh --host 0.0.0.0 --port 8081 --count 3
Optionally run validator in background with PM2(optional)
pm2 start pm2/validator.config.js