This file contains hidden or 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 matplotlib.pyplot as plt | |
| import numpy as np | |
| def plot_dict(d, xlabel, ylabel, filename): | |
| ''' Plotting the keys and values given in dictionary | |
| d = dictionary | |
| xlabel = label for x-axis | |
| ylabel = label for y-axis | |
| filename = output filename | |
| ''' | |
| fig = plt.figure() |
This file contains hidden or 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 pymc as mc | |
| from scipy.special import zeta | |
| def _model(data, discrete=True, xmin=1.): | |
| alpha = mc.Exponential('alpha', 1. / 1.5) | |
| @mc.stochastic(observed=True) | |
| def custom_stochastic(value=data, alpha=alpha, xmin=xmin, discrete=discrete): | |
| value = value[value >= xmin] | |
| if discrete == True: |
This file contains hidden or 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
| def analyze(data, discrete=True, xmin=1.): | |
| model = mc.MCMC(_model(data,discrete,xmin)) | |
| model.sample(5000) | |
| print(model.stats()['alpha']['mean']) | |
| mc.Matplot.plot(model) |
This file contains hidden or 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
| from scipy.sparse import csr_matrix, rand | |
| import tables as tb | |
| a = rand(2000,2000, format='csr') #imagine that many values are stored in this matrix and that sparsity is low | |
| b = a.T | |
| l, m, n = a.shape[0], a.shape[1], b.shape[1] | |
| f = tb.open_file('dot.h5', 'w') | |
| filters = tb.Filters(complevel=5, complib='blosc') | |
| out = f.create_carray(f.root, 'data', tb.Float32Atom(), shape=(l, n), filters=filters) | |
This file contains hidden or 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
| h5 = tb.open_file('dot.h5', 'r') | |
| a = h5.root.data | |
| row = a[0,:] #only one row gets loaded into memory | |
| print row |
This file contains hidden or 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
| f = tb.open_file('dot.h5', 'w') | |
| filters = tb.Filters(complevel=5, complib='blosc') | |
| out_data = f.create_earray(f.root, 'data', tb.Float32Atom(), shape=(0,), filters=filters) | |
| out_ri = f.create_earray(f.root, 'ri', tb.Float32Atom(),shape=(0,), filters=filters) | |
| out_ci = f.create_earray(f.root, 'ci', tb.Float32Atom(), shape=(0,), filters=filters) | |
| for i in range(0, l, bl): | |
| res = a.dot(b[:,i:min(i+bl, l)]) | |
| vals = res.data | |
| ri, ci = res.nonzero() | |
| out_data.append(vals) |
This file contains hidden or 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
| h5 = tb.open_file('dot.h5', 'r') | |
| a = csr_matrix((h5.root.data[:], (h5.root.ri[:], h5.root.ci[:])), shape=(l,n)) |
This file contains hidden or 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 numpy as np | |
| f = tb.open_file('dot.h5', 'w') | |
| filters = tb.Filters(complevel=5, complib='blosc') | |
| out_data = f.create_earray(f.root, 'data', tb.Float32Atom(), shape=(0,), filters=filters) | |
| out_indices = f.create_earray(f.root, 'indices', tb.Int32Atom(),shape=(0,), filters=filters) | |
| out_indptr = f.create_earray(f.root, 'indptr', tb.Int32Atom(), shape=(0,), filters=filters) | |
| out_indptr.append(np.array([0])) #this is needed as a first indptr | |
| max_indptr = 0 | |
| for i in range(0, l, bl): | |
| res = a[i:min(i+bl, l),:].dot(b) |
This file contains hidden or 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
| h5 = tb.open_file('dot.h5', 'r') | |
| a = csr_matrix((h5.root.data[:], h5.root.indices[:], h5.root.indptr[:]), shape=(l,n)) |
This file contains hidden or 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
| #let's get the third row | |
| a = h5.root | |
| b = csr_matrix((a.data[a.indptr[3]:a.indptr[3+1]], a.indices[a.indptr[3]:a.indptr[3+1]], np.array([0,len(a.indices[a.indptr[3]:a.indptr[3+1]])])), shape=(1,n)) |