Skip to content

Commit

Permalink
Adding a debug statement (#1)
Browse files Browse the repository at this point in the history
Just putting this in to make sure that the package manager in julia is
working properly.
  • Loading branch information
eric-tramel committed Sep 9, 2015
1 parent f95d544 commit f5530ab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/rbm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ the user options.
the training procedure [default=0.0]
=#
@assert minimum(X) >= 0 && maximum(X) <= 1
println("DEBUG: Fitting with Dropout")
n_samples = size(X, 2)
n_batches = @compat Int(ceil(n_samples / batch_size))
w_buf = zeros(size(rbm.W))
Expand Down

0 comments on commit f5530ab

Please sign in to comment.