├── .DS_Store ├── LICENSE ├── README.md ├── docs ├── bittaudio.jpg ├── miner.md └── validator.md ├── lib ├── __init__.py └── hashing.py ├── min_compute.yml ├── neurons ├── __init__.py ├── miner.py └── validator.py ├── requirements.txt ├── scripts ├── check_compatibility.sh ├── check_requirements_changes.sh └── start_valid.py ├── setup.py └── ttm ├── aimodel.py ├── protocol.py ├── ttm.py └── ttm_score.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/.DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/README.md -------------------------------------------------------------------------------- /docs/bittaudio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/docs/bittaudio.jpg -------------------------------------------------------------------------------- /docs/miner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/docs/miner.md -------------------------------------------------------------------------------- /docs/validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/docs/validator.md -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/lib/__init__.py -------------------------------------------------------------------------------- /lib/hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/lib/hashing.py -------------------------------------------------------------------------------- /min_compute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/min_compute.yml -------------------------------------------------------------------------------- /neurons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/neurons/__init__.py -------------------------------------------------------------------------------- /neurons/miner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/neurons/miner.py -------------------------------------------------------------------------------- /neurons/validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/neurons/validator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/check_compatibility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/scripts/check_compatibility.sh -------------------------------------------------------------------------------- /scripts/check_requirements_changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/scripts/check_requirements_changes.sh -------------------------------------------------------------------------------- /scripts/start_valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/scripts/start_valid.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/setup.py -------------------------------------------------------------------------------- /ttm/aimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/ttm/aimodel.py -------------------------------------------------------------------------------- /ttm/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/ttm/protocol.py -------------------------------------------------------------------------------- /ttm/ttm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/ttm/ttm.py -------------------------------------------------------------------------------- /ttm/ttm_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UncleTensor/BittAudio/HEAD/ttm/ttm_score.py --------------------------------------------------------------------------------