Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Popular repositories
-
Wrappers of Jerome Friedman's coordinate-descent Fortran implementation of lasso/elastic net regression from the R "glmnet" package.
-
reStructuredText of all the wiki pages on SciPy.org that were worth saving.
-
(Ancient) reference implementation of a modular codebase for backpropagation networks. Don't use this.
-
My Python implementation of the GeneMANIA algorithm from our 2008 Genome Biology paper.
Python 4
1 contribution in the last year
Contribution activity
May - October 2020
April 2020
Created an issue in google/jax that received 3 comments
jax.random.randint raises an error if minval and maxval have different rank than len(shape)
import numpy as np import jax jax.random.randint(jax.random.PRNGKey(1), shape=(50, 2), minval=np.array([0, 0]), maxval=np.array([2, 2])) results in…