From 0dcbb67a6396d389f38d9c58cb6a930e2d09a97b Mon Sep 17 00:00:00 2001 From: "Eric W. Tramel" Date: Wed, 9 Sep 2015 17:57:39 +0200 Subject: [PATCH] trying something else (#1) --- examples/mnistexample_dropout.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mnistexample_dropout.jl b/examples/mnistexample_dropout.jl index b726500..e312094 100644 --- a/examples/mnistexample_dropout.jl +++ b/examples/mnistexample_dropout.jl @@ -28,7 +28,7 @@ function run_mnist() X, y = testdata() # test data is smaller, no need to downsample X = X ./ (maximum(X) - minimum(X)) m = BernoulliRBM(28*28, 300) - fit(m, X; persistent=true, lr=0.1, n_iter=10, batch_size=100, n_gibbs=1, dorate=0.5) + fit(m, X,true,0.1,10,1,0.5) plot_weights(m.W[1:64, :], (28, 28)) return m end