Skip to content
View yulkang's full-sized avatar

Highlights

  • Pro
Block or Report

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.

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. 2D_Decision 2D_Decision Public

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

    MATLAB 4 1

  2. SubjDecTime SubjDecTime Public

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

    MATLAB 1 1

  3. pylabyk pylabyk Public

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

    Python 14 2

  4. FitFlow FitFlow Public

    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
    import torch
    3
    def block_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
    import torch
    3
    def kron(a, b):
    4
        """
    5
        Kronecker product of matrices a and b with leading batch dimensions.