Giter Club home page Giter Club logo

rbm-1's Introduction

Restricted Boltzmann Machines

This is a simple Python implementation of Restricted Boltzmann Machine (RBM). It handles Numpy arrays as well as Scipy sparse matrices. I am using the moment method to update the weights.

To use this module, make sure the following Python libraries are installed:

  • Numpy
  • Scipy
  • PIL
  • Matplotlib

Given an input vector X, the RBM algorithm learns a set of internal values H that would produce the data X.

Sample Features Learned:

The following is an example of Weights rbm library learned from grayscaled Galaxy images from the Kaggle Galaxy Zoo challenge:

Deep Neural Networks

This module can be used to build deep neural networks by training one layer after another.

The following example shows how to train two consecutive layers of a neural network using an arbitrary data vector X:

# import the rbm library
import rbm

# The first step is to initialize the RBM:
r1 = rbm.RBM(<input_size>, <output_size>)

# Next train the RBM layer using the "fit" method:
r1.fit(X, max_epochs=1000)


# Call "activate" to get the output of a given layer
V = r1.activate(X)

# Now, a second layer can be built from the output of the first layer:
r2 = rbm.RBM(V.shape[1], <output_size>)
r2.fit(V, max_epochs=1000)

rbm-1's People

Contributors

ramarlina avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.