This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dask | |
import dask.array as da | |
import dask.dataframe as dd | |
import sparse | |
@dask.delayed(pure=True) | |
def corr_on_chunked(chunk1, chunk2, corr_thresh=0.9): | |
return sparse.COO.from_numpy((np.dot(chunk1, chunk2.T) > corr_thresh)) | |
def chunked_corr_sparse_dask(data, chunksize=5000, corr_thresh=0.9): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Sampling parameters of a lorenz attractor. | |
The forward pass integrates the lorenz attractor ODE system using | |
tt.scan with a Runge-Kutta integrator. The predicted high-resolution | |
timecourse is interpolated down so it can be compared to low-density | |
observations. | |
""" | |
import abc | |
import numpy | |
import pymc3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Halton low discrepancy sequence. | |
This snippet implements the Halton sequence following the generalization of | |
a sequence of *Van der Corput* in n-dimensions. | |
--------------------------- | |
MIT License | |
Copyright (c) 2017 Pamphile Tupui ROY |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder