Skip to content
View mhlr's full-sized avatar
Block or Report

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

  1. notebooks notebooks Public

    Jupyter Notebook 1

  2. qiskit-meetup qiskit-meetup Public

    Jupyter Notebook 3

  3. awesome-jax awesome-jax Public

    List of awesome JAX resources

    10 1

  4. information_bottleneck.py 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... Enabling delegation / prototypal inheritance / instance based programming in Python
    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... generate Zipf distributed data as described in http://arxiv.org/abs/1407.7135
    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