Skip to content
View mhlr's full-sized avatar

Block or report mhlr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. notebooks Public

    Jupyter Notebook 1

  2. qiskit-meetup Public

    Jupyter Notebook 3

  3. awesome-jax Public

    List of awesome JAX resources

    13 1

  4. information_bottleneck.py
    1
    from pylab import *
    2
    import scipy
    3
    from scipy import stats
    4
    from numba import vectorize, guvectorize, float64, jit, njit
    5
    
                  
  5. Enabling delegation / prototypal inh...
    1
    from proto import Proto, ProtoMeta
    2
    __metaclass__ = ProtoMeta
    3
    
                  
    4
    class A:
    5
      x = "This is X"
  6. generate Zipf distributed data as de...
    1
    # gnerate Zipf distributed data as described in
    2
    #  http://arxiv.org/abs/1407.7135
    3
    #  Zipf's law arises naturally in structured, high-dimensional data
    4
    #  Laurence Aitchison, Nicola Corradi, Peter E. Latham
    5