diff --git a/bindsnet/network/topology_features.py b/bindsnet/network/topology_features.py index 7abcd636..18322811 100644 --- a/bindsnet/network/topology_features.py +++ b/bindsnet/network/topology_features.py @@ -283,16 +283,6 @@ def normalize(self) -> None: abs_sum[abs_sum == 0] = 1.0 self.value *= self.norm / abs_sum - def degrade(self) -> None: - # language=rst - """ - Degrade the value of the propagated spikes according to the features value. A lambda function should be passed - into the constructor which takes a single argument (which represent the value), and returns a value which will - be *subtracted* from the propagated spikes. - """ - - return self.degrade(self.value) - def link(self, parent_feature) -> None: # language=rst """