├── .circleci └── config.yml ├── .dependencies_installed ├── .gitignore ├── LICENSE ├── README.md ├── base_miner ├── get_tao_price.py └── predict.py ├── base_model └── build_lstm_model.py ├── contrib ├── CODE_REVIEW_DOCS.md ├── CONTRIBUTING.md ├── DEVELOPMENT_WORKFLOW.md └── STYLE.md ├── docs ├── running_on_mainnet.md ├── running_on_staging.md ├── running_on_testnet.md └── stream_tutorial │ ├── README.md │ ├── client.py │ ├── config.py │ ├── miner.py │ └── protocol.py ├── min_compute.yml ├── models ├── base_lstm.h5 └── lstm.h5 ├── neurons ├── __init__.py ├── miner.py └── validator.py ├── requirements.txt ├── scripts ├── check_compatibility.sh ├── check_requirements_changes.sh └── install_staging.sh ├── setup.py ├── template ├── __init__.py ├── api │ ├── __init__.py │ ├── dummy.py │ └── get_query_axons.py ├── base │ ├── __init__.py │ ├── miner.py │ ├── neuron.py │ ├── utils │ │ ├── __init__.py │ │ └── weight_utils.py │ └── validator.py ├── mock.py ├── protocol.py ├── subnet_links.py ├── utils │ ├── __init__.py │ ├── config.py │ ├── logging.py │ ├── misc.py │ └── uids.py └── validator │ ├── __init__.py │ ├── forward.py │ └── reward.py ├── tests ├── __init__.py ├── helpers.py ├── test_get_tao_price.py ├── test_mock.py ├── test_predict.py └── test_template_validator.py └── verify ├── generate.py └── verify.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.dependencies_installed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/README.md -------------------------------------------------------------------------------- /base_miner/get_tao_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/base_miner/get_tao_price.py -------------------------------------------------------------------------------- /base_miner/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/base_miner/predict.py -------------------------------------------------------------------------------- /base_model/build_lstm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/base_model/build_lstm_model.py -------------------------------------------------------------------------------- /contrib/CODE_REVIEW_DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/contrib/CODE_REVIEW_DOCS.md -------------------------------------------------------------------------------- /contrib/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/contrib/CONTRIBUTING.md -------------------------------------------------------------------------------- /contrib/DEVELOPMENT_WORKFLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/contrib/DEVELOPMENT_WORKFLOW.md -------------------------------------------------------------------------------- /contrib/STYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/contrib/STYLE.md -------------------------------------------------------------------------------- /docs/running_on_mainnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/docs/running_on_mainnet.md -------------------------------------------------------------------------------- /docs/running_on_staging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/docs/running_on_staging.md -------------------------------------------------------------------------------- /docs/running_on_testnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/docs/running_on_testnet.md -------------------------------------------------------------------------------- /docs/stream_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/docs/stream_tutorial/README.md -------------------------------------------------------------------------------- /docs/stream_tutorial/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/docs/stream_tutorial/client.py -------------------------------------------------------------------------------- /docs/stream_tutorial/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/docs/stream_tutorial/config.py -------------------------------------------------------------------------------- /docs/stream_tutorial/miner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/docs/stream_tutorial/miner.py -------------------------------------------------------------------------------- /docs/stream_tutorial/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/docs/stream_tutorial/protocol.py -------------------------------------------------------------------------------- /min_compute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/min_compute.yml -------------------------------------------------------------------------------- /models/base_lstm.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/models/base_lstm.h5 -------------------------------------------------------------------------------- /models/lstm.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/models/lstm.h5 -------------------------------------------------------------------------------- /neurons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neurons/miner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/neurons/miner.py -------------------------------------------------------------------------------- /neurons/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/neurons/validator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/check_compatibility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/scripts/check_compatibility.sh -------------------------------------------------------------------------------- /scripts/check_requirements_changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/scripts/check_requirements_changes.sh -------------------------------------------------------------------------------- /scripts/install_staging.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/scripts/install_staging.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/setup.py -------------------------------------------------------------------------------- /template/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/__init__.py -------------------------------------------------------------------------------- /template/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/api/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/api/dummy.py -------------------------------------------------------------------------------- /template/api/get_query_axons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/api/get_query_axons.py -------------------------------------------------------------------------------- /template/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/base/miner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/base/miner.py -------------------------------------------------------------------------------- /template/base/neuron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/base/neuron.py -------------------------------------------------------------------------------- /template/base/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/base/utils/weight_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/base/utils/weight_utils.py -------------------------------------------------------------------------------- /template/base/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/base/validator.py -------------------------------------------------------------------------------- /template/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/mock.py -------------------------------------------------------------------------------- /template/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/protocol.py -------------------------------------------------------------------------------- /template/subnet_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/subnet_links.py -------------------------------------------------------------------------------- /template/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/utils/__init__.py -------------------------------------------------------------------------------- /template/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/utils/config.py -------------------------------------------------------------------------------- /template/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/utils/logging.py -------------------------------------------------------------------------------- /template/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/utils/misc.py -------------------------------------------------------------------------------- /template/utils/uids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/utils/uids.py -------------------------------------------------------------------------------- /template/validator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/validator/__init__.py -------------------------------------------------------------------------------- /template/validator/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/validator/forward.py -------------------------------------------------------------------------------- /template/validator/reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/template/validator/reward.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_get_tao_price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/tests/test_get_tao_price.py -------------------------------------------------------------------------------- /tests/test_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/tests/test_mock.py -------------------------------------------------------------------------------- /tests/test_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/tests/test_predict.py -------------------------------------------------------------------------------- /tests/test_template_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/tests/test_template_validator.py -------------------------------------------------------------------------------- /verify/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/verify/generate.py -------------------------------------------------------------------------------- /verify/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mltrev23/crypto-prediction-subnet/HEAD/verify/verify.py --------------------------------------------------------------------------------