File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
uncertainty_wizard/models Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1+ import logging
2+
13import tensorflow as tf
2- from tensorflow .python .platform import tf_logging as logging
34
45from uncertainty_wizard .models ._stochastic ._abstract_stochastic import Stochastic
56from uncertainty_wizard .models ._stochastic ._stochastic_mode import StochasticMode
Original file line number Diff line number Diff line change 55import warnings
66
77import tensorflow as tf
8- from tensorflow .python .keras .layers import GaussianNoise
98
109from uncertainty_wizard .internal_utils import UncertaintyWizardWarning
1110from uncertainty_wizard .models ._stochastic ._stochastic_mode import StochasticMode
@@ -215,7 +214,7 @@ def from_keras_layer(
215214
216215 # docstr-coverage:inherited
217216 def get_config (self ):
218- config = super (GaussianNoise , self ).get_config ()
217+ config = super (tf . keras . layers . GaussianNoise , self ).get_config ()
219218 config ["name" ] = "UwGaussianNoise"
220219 # No custom config yet.
221220 return config
You can’t perform that action at this time.
0 commit comments