Block or Report
Block or report bobchennan
Report abuse
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePinned
-
Wasserstein-GAN-Keras Public
Keras implementation of Wasserstein GAN. Modified from the ACGAN example.
-
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
-
1
import torch
2from torch.autograd import Function
34class GELS(Function):
5""" Efficient implementation of gels from
-
1
import torch
2import torch.nn as nn
3import torch.nn.functional as F
45# helpers
-
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