Skip to content
View bobchennan's full-sized avatar

Organizations

@iwg @SJTUACM11

Block or report bobchennan

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. Wasserstein-GAN-Keras Wasserstein-GAN-Keras Public

    Keras implementation of Wasserstein GAN. Modified from the ACGAN example.

    Python 39 14

  2. VAE_NBP VAE_NBP Public

    Variational Auto-encoder with Non-parametric Bayesian Prior

    Python 42 17

  3. sparse_image_warp_pytorch sparse_image_warp_pytorch Public

    Pytorch implementation of sparse_image_warp and an example of GoogleBrain's SpecAugment is given: A Simple Data Augmentation Method for Automatic Speech Recognition https://arxiv.org/abs/1904.08779

    Python 22 6

  4. GELS with deriviative in pytorch GELS with deriviative in pytorch
    1
    import torch
    2
    from torch.autograd import Function
    3
    
                  
    4
    class GELS(Function):
    5
        """ Efficient implementation of gels from
  5. reformer(pytorch) reformer(pytorch)
    1
    import torch
    2
    import torch.nn as nn
    3
    import torch.nn.functional as F
    4
    
                  
    5
    # helpers
  6. Trie-Compress Trie-Compress Public

    Briefly implement algorithms introduced in "Compressing IP Forwarding Tables: Towards Entropy Bounds and Beyond A revised technical report", mainly contains algorithms about compressing the Trie st…

    C 3