From 32c0e59115cca8b98cf172d1fd855fa6043ca085 Mon Sep 17 00:00:00 2001 From: ibraheem-opentensor Date: Tue, 17 Dec 2024 17:54:58 -0800 Subject: [PATCH] Makes not implemented trace --- template/base/neuron.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/base/neuron.py b/template/base/neuron.py index 9b2ce7b2..364bdcdf 100644 --- a/template/base/neuron.py +++ b/template/base/neuron.py @@ -169,11 +169,11 @@ def should_set_weights(self) -> bool: ) # don't set weights if you're a miner def save_state(self): - bt.logging.warning( + bt.logging.trace( "save_state() not implemented for this neuron. You can implement this function to save model checkpoints or other useful data." ) def load_state(self): - bt.logging.warning( + bt.logging.trace( "load_state() not implemented for this neuron. You can implement this function to load model checkpoints or other useful data." )