Skip to content
View yulkang's full-sized avatar

Highlights

  • Pro

Block or report yulkang

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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. 2D_Decision2D_DecisionPublic

    Code for "Multiple decisions about one object involve parallel sensory acquisition but time-multiplexed evidence incorporation"

    MATLAB 4 1

  2. SubjDecTimeSubjDecTimePublic

    Code for "Piercing of consciousness as a threshold crossing operation"

    MATLAB 1 1

  3. pylabykpylabykPublic

    Pylab-style utilities for PyTorch and Matplotlib, among others.

    Python 16 2

  4. FitFlowFitFlowPublic

    High-level interface to constrained optimization in MATLAB

    MATLAB

  5. Block diagonal matrix in PyTorch - v...Block diagonal matrix in PyTorch - vectorized
    1
    """A part of the pylabyk library: numpytorch.py at https://github.com/yulkang/pylabyk"""
    2
    importtorch
    3
    defblock_diag(m):
    4
    """
    5
     Make a block diagonal matrix along dim=-3
  6. Kronecker Product in PyTorch - with ...Kronecker Product in PyTorch - with batch dimensions broadcast
    1
    """A part of the pylabyk library: numpytorch.py at https://github.com/yulkang/pylabyk"""
    2
    importtorch
    3
    defkron(a, b):
    4
    """
    5
     Kronecker product of matrices a and b with leading batch dimensions.