Closed sayakpaul closed 2 years ago
Say I have a configuration like
configs = ConfigDict() configs.num_neurons = 15 config.activation = "relu"
Now I would like to delete activation. Is it possible?
activation
del configs.activation This work for me.
del configs.activation
Say I have a configuration like
Now I would like to delete
activation
. Is it possible?