Coder Social home page Coder Social logo

msuzen / bristol Goto Github PK

View Code? Open in Web Editor NEW
33.0 5.0 13.0 474 KB

Parallel random matrix tools and complexity for deep learning

License: GNU General Public License v3.0

Python 17.85% Jupyter Notebook 81.99% Shell 0.16%
deep-learning-papers deep-learning random-matrix-theory ergodicity statistical-mechanics spin-glass neural-architecture-search random-matrices circular-ensembles machine-learning-algorithms

bristol's Issues

fix CI

CI is broken as travis org is ceased to exist.

Visualise random matrix

Given generated matrix, visualise in colour mode:

  • color/bw
  • historgram

Store the object. Preferable use matplotlib.

Update description

Parallel random matrix tools and complexity for deep learning. Drop other clutter from the description.

Gen data module

Example data set generation module, for example see code here. Note that this is older code, so Circular module name capitalized.

Update method documentation

Use docstring compatible structure, such as the following taken from scipy:

def angle(z, deg=0):
    """
    Return the angle of the complex argument.

    Parameters
    ----------
    z : array_like
        A complex number or sequence of complex numbers.
    deg : bool, optional
        Return angle in degrees if True, radians if False (default).

    Returns
    -------
    angle : ndarray or scalar
        The counterclockwise angle from the positive real axis on
        the complex plane, with dtype as numpy.float64.

    See Also
    --------
    arctan2
    absolute



    Examples
    --------
    >>> np.angle([1.0, 1.0j, 1+1j])               # in radians
    array([ 0.        ,  1.57079633,  0.78539816])
    >>> np.angle(1+1j, deg=True)                  # in degrees
    45.0

    """
    if deg:
        fact = 180/pi
    else:
        fact = 1.0

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.