Skip to content

Commit

Permalink
Forgot to add the GaussianRelu examples/models script.
Browse files Browse the repository at this point in the history
  • Loading branch information
gugarosa committed May 27, 2020
1 parent e60ff14 commit b39d4c5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/models/create_gaussian_relu_rbm.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from learnergy.models import GaussianReluRBM

# Creates a GaussianReluRBM-based class
model = GaussianReluRBM(n_visible=784, n_hidden=128, steps=1, learning_rate=0.1,
momentum=0, decay=0, temperature=1, use_gpu=False)

0 comments on commit b39d4c5

Please sign in to comment.