This repository was archived by the owner on Sep 1, 2024. It is now read-only.
forked from opentensor/bittensor-subnet-template
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
284 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
# The MIT License (MIT) | ||
# Copyright © 2023 Yuma Rao | ||
# Copyright © 2023 Opentensor Foundation | ||
|
||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
# documentation files (the “Software”), to deal in the Software without restriction, including without limitation | ||
# the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, | ||
# and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of | ||
# the Software. | ||
|
||
# THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO | ||
# THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
# DEALINGS IN THE SOFTWARE. | ||
|
||
import sys | ||
import numpy as np | ||
import unittest | ||
import bittensor as bt | ||
|
||
from neurons.validator import Neuron as Validator | ||
from neurons.miner import Neuron as Miner | ||
|
||
from template.protocol import Dummy | ||
from template.validator.forward import forward | ||
from template.utils.uids import get_random_uids | ||
from template.validator.reward import get_rewards | ||
from template.base.validator import BaseValidatorNeuron | ||
|
||
|
||
class TemplateValidatorNeuronTestCase(unittest.TestCase): | ||
""" | ||
This class contains unit tests for the RewardEvent classes. | ||
The tests cover different scenarios where completions may or may not be successful and the reward events are checked that they don't contain missing values. | ||
The `reward` attribute of all RewardEvents is expected to be a float, and the `is_filter_model` attribute is expected to be a boolean. | ||
""" | ||
|
||
def setUp(self): | ||
sys.argv = sys.argv[0] + ["--config", "tests/configs/validator.json"] | ||
|
||
config = BaseValidatorNeuron.config() | ||
config.wallet._mock = True | ||
config.metagraph._mock = True | ||
config.subtensor._mock = True | ||
self.neuron = Validator(config) | ||
self.miner_uids = get_random_uids(self, k=10) | ||
|
||
def test_run_single_step(self): | ||
# TODO: Test a single step | ||
pass | ||
|
||
def test_sync_error_if_not_registered(self): | ||
# TODO: Test that the validator throws an error if it is not registered on metagraph | ||
pass | ||
|
||
def test_forward(self): | ||
# TODO: Test that the forward function returns the correct value | ||
pass | ||
|
||
def test_dummy_responses(self): | ||
# TODO: Test that the dummy responses are correctly constructed | ||
|
||
responses = self.neuron.dendrite.query( | ||
# Send the query to miners in the network. | ||
axons=[ | ||
self.neuron.metagraph.axons[uid] for uid in self.miner_uids | ||
], | ||
# Construct a dummy query. | ||
synapse=Dummy(dummy_input=self.neuron.step), | ||
# All responses have the deserialize function called on them before returning. | ||
deserialize=True, | ||
) | ||
|
||
for i, response in enumerate(responses): | ||
self.assertEqual(response, self.neuron.step * 2) | ||
|
||
def test_reward(self): | ||
# TODO: Test that the reward function returns the correct value | ||
responses = self.dendrite.query( | ||
# Send the query to miners in the network. | ||
axons=[self.metagraph.axons[uid] for uid in self.miner_uids], | ||
# Construct a dummy query. | ||
synapse=Dummy(dummy_input=self.neuron.step), | ||
# All responses have the deserialize function called on them before returning. | ||
deserialize=True, | ||
) | ||
|
||
rewards = get_rewards(self.neuron, responses) | ||
expected_rewards = np.float32([1.0] * len(responses)) | ||
self.assertEqual(rewards, expected_rewards) | ||
|
||
def test_reward_with_nan(self): | ||
# TODO: Test that NaN rewards are correctly sanitized | ||
# TODO: Test that a bt.logging.warning is thrown when a NaN reward is sanitized | ||
responses = self.dendrite.query( | ||
# Send the query to miners in the network. | ||
axons=[self.metagraph.axons[uid] for uid in self.miner_uids], | ||
# Construct a dummy query. | ||
synapse=Dummy(dummy_input=self.neuron.step), | ||
# All responses have the deserialize function called on them before returning. | ||
deserialize=True, | ||
) | ||
|
||
rewards = get_rewards(self.neuron, responses) | ||
expected_rewards = rewards.clone() | ||
# Add NaN values to rewards | ||
rewards[0] = float("nan") | ||
|
||
with self.assertLogs(bt.logging, level="WARNING") as cm: | ||
self.neuron.update_scores(rewards, self.miner_uids) |