├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis ├── __init__.py ├── demo.ipynb ├── plotting.py └── utils.py ├── openvalidators ├── __init__.py ├── config.py ├── dataset.py ├── dendrite.py ├── event.py ├── forward.py ├── gating.py ├── misc.py ├── mock.py ├── neuron.py ├── prompts.py ├── reward │ ├── __init__.py │ ├── blacklist.py │ ├── config.py │ ├── dahoas.py │ ├── diversity.py │ ├── dpo.py │ ├── nsfw.py │ ├── open_assistant.py │ ├── prompt.py │ ├── reciprocate.py │ ├── relevance.py │ ├── reward.py │ └── task_validator.py ├── run.py ├── utils.py └── weights.py ├── pytest.ini ├── requirements.txt ├── run.sh ├── scratch.ipynb ├── scripts ├── Makefile ├── README.md ├── blacklist_phrases.txt ├── data_collector.py ├── data_formatter.py └── release │ ├── README.md │ ├── add_notes_changelog.sh │ ├── github_release.sh │ ├── github_utils.sh │ ├── release.sh │ ├── utils.sh │ └── versioning.sh ├── setup.py └── tests ├── __init__.py ├── helpers └── __init__.py ├── reward ├── __init__.py └── test_task_validator.py ├── test_dataset.py ├── test_dendrite.py ├── test_event.py ├── test_utils.py └── test_weights.py /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/README.md -------------------------------------------------------------------------------- /analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /analysis/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/analysis/demo.ipynb -------------------------------------------------------------------------------- /analysis/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/analysis/plotting.py -------------------------------------------------------------------------------- /analysis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/analysis/utils.py -------------------------------------------------------------------------------- /openvalidators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/__init__.py -------------------------------------------------------------------------------- /openvalidators/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/config.py -------------------------------------------------------------------------------- /openvalidators/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/dataset.py -------------------------------------------------------------------------------- /openvalidators/dendrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/dendrite.py -------------------------------------------------------------------------------- /openvalidators/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/event.py -------------------------------------------------------------------------------- /openvalidators/forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/forward.py -------------------------------------------------------------------------------- /openvalidators/gating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/gating.py -------------------------------------------------------------------------------- /openvalidators/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/misc.py -------------------------------------------------------------------------------- /openvalidators/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/mock.py -------------------------------------------------------------------------------- /openvalidators/neuron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/neuron.py -------------------------------------------------------------------------------- /openvalidators/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/prompts.py -------------------------------------------------------------------------------- /openvalidators/reward/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/__init__.py -------------------------------------------------------------------------------- /openvalidators/reward/blacklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/blacklist.py -------------------------------------------------------------------------------- /openvalidators/reward/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/config.py -------------------------------------------------------------------------------- /openvalidators/reward/dahoas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/dahoas.py -------------------------------------------------------------------------------- /openvalidators/reward/diversity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/diversity.py -------------------------------------------------------------------------------- /openvalidators/reward/dpo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/dpo.py -------------------------------------------------------------------------------- /openvalidators/reward/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/nsfw.py -------------------------------------------------------------------------------- /openvalidators/reward/open_assistant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/open_assistant.py -------------------------------------------------------------------------------- /openvalidators/reward/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/prompt.py -------------------------------------------------------------------------------- /openvalidators/reward/reciprocate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/reciprocate.py -------------------------------------------------------------------------------- /openvalidators/reward/relevance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/relevance.py -------------------------------------------------------------------------------- /openvalidators/reward/reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/reward.py -------------------------------------------------------------------------------- /openvalidators/reward/task_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/reward/task_validator.py -------------------------------------------------------------------------------- /openvalidators/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/run.py -------------------------------------------------------------------------------- /openvalidators/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/utils.py -------------------------------------------------------------------------------- /openvalidators/weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/openvalidators/weights.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | pythonpath = . -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/run.sh -------------------------------------------------------------------------------- /scratch.ipynb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/Makefile -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/blacklist_phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/blacklist_phrases.txt -------------------------------------------------------------------------------- /scripts/data_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/data_collector.py -------------------------------------------------------------------------------- /scripts/data_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/data_formatter.py -------------------------------------------------------------------------------- /scripts/release/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/release/README.md -------------------------------------------------------------------------------- /scripts/release/add_notes_changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/release/add_notes_changelog.sh -------------------------------------------------------------------------------- /scripts/release/github_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/release/github_release.sh -------------------------------------------------------------------------------- /scripts/release/github_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/release/github_utils.sh -------------------------------------------------------------------------------- /scripts/release/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/release/release.sh -------------------------------------------------------------------------------- /scripts/release/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/release/utils.sh -------------------------------------------------------------------------------- /scripts/release/versioning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/scripts/release/versioning.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/tests/helpers/__init__.py -------------------------------------------------------------------------------- /tests/reward/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/reward/test_task_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/tests/reward/test_task_validator.py -------------------------------------------------------------------------------- /tests/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/tests/test_dataset.py -------------------------------------------------------------------------------- /tests/test_dendrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/tests/test_dendrite.py -------------------------------------------------------------------------------- /tests/test_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/tests/test_event.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentensor/validators/HEAD/tests/test_weights.py --------------------------------------------------------------------------------