Giter Site home page Giter Site logo

kdonthi / hopfield-model Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 10 KB

Utilizes the three kinds of updates for the Hopfield model: synchronous, asynchronous ordered, and asynchronous random. The program plots the Energy as a function of iteration.

Python 100.00%

hopfield-model's Introduction

Hopfield-Model

Utilizes the three kinds of updates for the Hopfield model: synchronous, asynchronous ordered, and asynchronous random. The program plots the Energy as a function of iteration.

The program takes in 3 command-line arguments:

  1. The type of update
    a) Synchronous (synch) - all your X values are updated every iteration
    b) Asynchronous random (asynchrand) - A random X value is chosen to be updated every iteration
    c) Asynchronous order (asynchorder) - An X value is updated if the previous X value was updated the previous iteration ((iteration - 1) % (dimension of X vector)) gives the index to be updated this iteration, if we say that the iterations start at 1)
  2. The amount of inputs/dimension of weight matrix
  3. Symmettry of weight matrix (1 if it should be symmetric, 0 if values should be chosen randomly)

E.g.

python3 hopfield.py asynchorder 2 0 uses asynchronous order update, an input vector of size 2, and a weight matrix with randomly picked values
and python3 hopfield.py synch 3 1 uses synchronous update, an input vector of size 3, and a symmetric weight matrix.

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.