├── .DS_Store ├── .circleci └── config.yml ├── .env.sample ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── README.md ├── app_miner.config.sample.js ├── app_validator.config.sample.js ├── auto_update.sh ├── auto_updates_all_processes.sh ├── docs ├── MINER.md └── VALIDATOR.md ├── install.sh ├── logicnet ├── __init__.py ├── base │ ├── __init__.py │ ├── miner.py │ ├── neuron.py │ └── validator.py ├── miner │ ├── __init__.py │ ├── blacklist.py │ └── forward.py ├── protocol.py ├── utils │ ├── __init__.py │ ├── config.py │ ├── minio_manager.py │ ├── misc.py │ ├── model_selector.py │ ├── regex_helper.py │ ├── text_uts.py │ └── volume_setting.py └── validator │ ├── __init__.py │ ├── challenger │ ├── challenger.py │ └── human_noise.py │ ├── miner_manager.py │ ├── prompt.py │ └── rewarder.py ├── neurons ├── __init__.py ├── miner │ └── miner.py └── validator │ ├── __init__.py │ ├── core │ └── serving_queue.py │ ├── validator.py │ └── validator_proxy.py ├── pm2_setup.sh ├── requirements.txt ├── setup.py └── tests ├── test_challenge_generator.py └── test_forward_pass.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/.DS_Store -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/README.md -------------------------------------------------------------------------------- /app_miner.config.sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/app_miner.config.sample.js -------------------------------------------------------------------------------- /app_validator.config.sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/app_validator.config.sample.js -------------------------------------------------------------------------------- /auto_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/auto_update.sh -------------------------------------------------------------------------------- /auto_updates_all_processes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/auto_updates_all_processes.sh -------------------------------------------------------------------------------- /docs/MINER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/docs/MINER.md -------------------------------------------------------------------------------- /docs/VALIDATOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/docs/VALIDATOR.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/install.sh -------------------------------------------------------------------------------- /logicnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/__init__.py -------------------------------------------------------------------------------- /logicnet/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logicnet/base/miner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/base/miner.py -------------------------------------------------------------------------------- /logicnet/base/neuron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/base/neuron.py -------------------------------------------------------------------------------- /logicnet/base/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/base/validator.py -------------------------------------------------------------------------------- /logicnet/miner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/miner/__init__.py -------------------------------------------------------------------------------- /logicnet/miner/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/miner/blacklist.py -------------------------------------------------------------------------------- /logicnet/miner/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/miner/forward.py -------------------------------------------------------------------------------- /logicnet/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/protocol.py -------------------------------------------------------------------------------- /logicnet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/utils/__init__.py -------------------------------------------------------------------------------- /logicnet/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/utils/config.py -------------------------------------------------------------------------------- /logicnet/utils/minio_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/utils/minio_manager.py -------------------------------------------------------------------------------- /logicnet/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/utils/misc.py -------------------------------------------------------------------------------- /logicnet/utils/model_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/utils/model_selector.py -------------------------------------------------------------------------------- /logicnet/utils/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/utils/regex_helper.py -------------------------------------------------------------------------------- /logicnet/utils/text_uts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/utils/text_uts.py -------------------------------------------------------------------------------- /logicnet/utils/volume_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/utils/volume_setting.py -------------------------------------------------------------------------------- /logicnet/validator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/validator/__init__.py -------------------------------------------------------------------------------- /logicnet/validator/challenger/challenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/validator/challenger/challenger.py -------------------------------------------------------------------------------- /logicnet/validator/challenger/human_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/validator/challenger/human_noise.py -------------------------------------------------------------------------------- /logicnet/validator/miner_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/validator/miner_manager.py -------------------------------------------------------------------------------- /logicnet/validator/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/validator/prompt.py -------------------------------------------------------------------------------- /logicnet/validator/rewarder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/logicnet/validator/rewarder.py -------------------------------------------------------------------------------- /neurons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurons/miner/miner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/neurons/miner/miner.py -------------------------------------------------------------------------------- /neurons/validator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/neurons/validator/__init__.py -------------------------------------------------------------------------------- /neurons/validator/core/serving_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/neurons/validator/core/serving_queue.py -------------------------------------------------------------------------------- /neurons/validator/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/neurons/validator/validator.py -------------------------------------------------------------------------------- /neurons/validator/validator_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/neurons/validator/validator_proxy.py -------------------------------------------------------------------------------- /pm2_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/pm2_setup.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_challenge_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/tests/test_challenge_generator.py -------------------------------------------------------------------------------- /tests/test_forward_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LogicNet-Subnet/LogicNet/HEAD/tests/test_forward_pass.py --------------------------------------------------------------------------------