From fe9b84c500bb0d22fee69c2b112f6f940954d5df Mon Sep 17 00:00:00 2001 From: rink <rink@ssec.wisc.edu> Date: Wed, 28 May 2025 12:16:31 -0500 Subject: [PATCH] add option to pass in absolute tolerance --- modules/deeplearning/mc_dropout_regression.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/deeplearning/mc_dropout_regression.py b/modules/deeplearning/mc_dropout_regression.py index 924f57f9..3e3d6529 100644 --- a/modules/deeplearning/mc_dropout_regression.py +++ b/modules/deeplearning/mc_dropout_regression.py @@ -2,7 +2,7 @@ import tensorflow as tf import numpy as np import matplotlib.pyplot as plt -drop_out_rate = 0.5 +drop_out_rate = 0.2 def create_mnist_dataset(): return tf.keras.datasets.mnist.load_data() -- GitLab