Guest User

Untitled

a guest
Oct 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. from rbmtf import RBM
  2. import numpy as np
  3.  
  4. test = np.array([[0,1,1,0], [0,1,0,0], [0,0,1,1]])
  5. rbm = RBM(4, 3, 0.1, 100)
  6. rbm.train(test)
Add Comment
Please, Sign In to add comment