-
What is the difference between these 2 output noise types, InferenceRPUConfig.forward.w_noise = 0.02 # Some short-term w-noise.
InferenceRPUConfig.forward.out_noise = 0.02 # Some output noise. They are both output noises. |
Beta Was this translation helpful? Give feedback.
Answered by
maljoras
Oct 6, 2022
Replies: 2 comments 7 replies
-
They are both output referred noise, but the |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
matifali
-
Also, is |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
They are both output referred noise, but the
out_noise
is independent additive Gaussian applied to the outputs, whereas thew_noise
is the strength of the noise and depends on thew_noise_type
. It is noise that scales with the weight values. Take a look at the API documentation