-
Notifications
You must be signed in to change notification settings - Fork 8
/
PKG-INFO
52 lines (47 loc) · 1.94 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Metadata-Version: 1.0
Name: rbm.py
Version: 1.0
Summary: Pain-free Restricted Boltzmann Machines
Home-page: http://ynd.github.com/rbm.py/
Author: Yann N. Dauphin
Author-email: [email protected]
License: BSD
Description:
Introduction
============
_rbm.py_ is the fastest and easiest way to use Restricted Boltzmann
Machines (RBMs). RBMs are a class of probabilistic models that can discover
hidden patterns in your data. _rbm.py_ provides all the necessary methods with
a pythonic interface, and moreover, all methods call blazing fast C code. The
code can also run transparently on GPU thanks to
Theano (http://deeplearning.net/software/theano/).
Here's an example usage
$ python
>>> import numpy, rbm
>>> X = numpy.array([[0, 1, 0], \
[0, 1, 1], \
[1, 0, 1], \
[1, 1, 1]]) # Improvised dataset
>>> model = rbm.RBM(n_hiddens=2) # RBM with two hiddens units
>>> model.fit(X) # Train using dataset X
>>> model.sample_h(X) # Get hidden code
array([[0, 0],
[0, 1],
[1, 1],
[1, 0]])
>>> model.gibbs(X) # MCMC step
array([[0, 1, 1],
[1, 0, 1],
[0, 0, 1],
[1, 0, 1]])
Authors and Contributors
========================
Yann N. Dauphin (@ynd)
Support or Contact
==================
Having trouble? Check out https://github.com/ynd/rbm.py/issues.
Keywords: machine learning restricted boltzmann machine
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: BSD License