Created
July 9, 2012 20:36
-
-
Save jni/3078740 to your computer and use it in GitHub Desktop.
Attempt to use joblib mmap failed
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
diff --git a/sklearn/ensemble/forest.py b/sklearn/ensemble/forest.py | |
old mode 100644 | |
new mode 100755 | |
index 3272f18..5c965b8 | |
--- a/sklearn/ensemble/forest.py | |
+++ b/sklearn/ensemble/forest.py | |
@@ -46,6 +46,8 @@ from ..metrics import r2_score | |
from .base import BaseEnsemble | |
+from..externals import joblib | |
+ | |
__all__ = ["RandomForestClassifier", | |
"RandomForestRegressor", | |
"ExtraTreesClassifier", | |
@@ -171,6 +173,7 @@ class BaseForest(BaseEnsemble, SelectorMixin): | |
compute_importances=False, | |
oob_score=False, | |
n_jobs=1, | |
+ shared=False, | |
random_state=None, | |
verbose=0): | |
super(BaseForest, self).__init__( | |
@@ -182,6 +185,7 @@ class BaseForest(BaseEnsemble, SelectorMixin): | |
self.compute_importances = compute_importances | |
self.oob_score = oob_score | |
self.n_jobs = n_jobs | |
+ self.shared = shared | |
self.random_state = check_random_state(random_state) | |
self.feature_importances_ = None | |
@@ -233,6 +237,16 @@ class BaseForest(BaseEnsemble, SelectorMixin): | |
self.n_classes_ = len(self.classes_) | |
y = np.searchsorted(self.classes_, y) | |
+ # use shared memory if configured | |
+ if self.shared: | |
+ tmpfile = '/tmp/dataset.joblib' | |
+ joblib.dump(np.asfortranarray(X), tmpfile) | |
+ X = joblib.load(tmpfile, mmap_mode='c') | |
+ if X_argsorted is not None: | |
+ tmpfile2 = '/tmp/dataset-argsorted.joblib' | |
+ joblib.dump(np.asfortranarray(X_argsorted), tmpfile) | |
+ X_argsorted = joblib.load(tmpfile2, mmap_mode='c') | |
+ | |
# Assign chunk of trees to jobs | |
n_jobs, n_trees, _ = _partition_trees(self) | |
@@ -301,6 +315,7 @@ class ForestClassifier(BaseForest, ClassifierMixin): | |
compute_importances=False, | |
oob_score=False, | |
n_jobs=1, | |
+ shared=False, | |
random_state=None, | |
verbose=0): | |
super(ForestClassifier, self).__init__( | |
@@ -311,6 +326,7 @@ class ForestClassifier(BaseForest, ClassifierMixin): | |
compute_importances=compute_importances, | |
oob_score=oob_score, | |
n_jobs=n_jobs, | |
+ shared=shared, | |
random_state=random_state, | |
verbose=verbose) | |
@@ -560,6 +576,7 @@ class RandomForestClassifier(ForestClassifier): | |
compute_importances=False, | |
oob_score=False, | |
n_jobs=1, | |
+ shared=False, | |
random_state=None, | |
verbose=0): | |
super(RandomForestClassifier, self).__init__( | |
@@ -572,6 +589,7 @@ class RandomForestClassifier(ForestClassifier): | |
compute_importances=compute_importances, | |
oob_score=oob_score, | |
n_jobs=n_jobs, | |
+ shared=shared, | |
random_state=random_state, | |
verbose=verbose) | |
@@ -695,6 +713,7 @@ class RandomForestRegressor(ForestRegressor): | |
compute_importances=False, | |
oob_score=False, | |
n_jobs=1, | |
+ shared=False, | |
random_state=None, | |
verbose=0): | |
super(RandomForestRegressor, self).__init__( | |
@@ -707,6 +726,7 @@ class RandomForestRegressor(ForestRegressor): | |
compute_importances=compute_importances, | |
oob_score=oob_score, | |
n_jobs=n_jobs, | |
+ shared=shared, | |
random_state=random_state, | |
verbose=verbose) |
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
In [8]: rf = RandomForestClassifier(100, max_depth=20, n_jobs=2, shared=True, compute_importances=True) | |
In [9]: rf = rf.fit(dat5[0], dat5[1][:, 0]) | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., | |
0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
Exception AttributeError: AttributeError("'NoneType' object has no attribute 'tell'",) in <bound method memmap.__del__ of memmap([ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, | |
0.00000000e+00, 5.06250080e-08, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
9.54999954e-01, 1.22499975e-03, 1.11022302e-16, | |
1.50062439e-06, 3.00000003e-02, 4.00000019e-04, | |
-1.35525272e-20, 1.60000015e-07, 1.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
4.00000000e-03, 2.00000000e-02, 3.60000000e-02, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 5.00000000e-01, | |
0.00000000e+00, 5.00000000e-01, 8.88000000e-01, | |
9.20000000e-01, 9.92000000e-01, 5.00000000e-01, | |
5.00000000e-01, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
8.00000000e-03, 4.00000000e-02, 7.20000000e-02, | |
2.00000000e+00, 7.53500000e+02, 9.65243000e+05, | |
1.91721350e-01, 9.38117059e-02, 4.55827747e-02, | |
3.62126001e-02, 7.22043006e-01, 1.33276220e-01, | |
-4.85398305e-02, 4.16591528e-02, 6.16980809e-02, | |
3.54729716e-02, 2.41211118e-02, 1.91935258e-02, | |
2.45375627e-02, 3.08911523e-03, 8.28363241e-04, | |
3.40741101e-04, 5.72900296e-01, 5.76113994e-02, | |
3.68746523e-02, 3.24622919e-02, 2.23094081e-02, | |
2.13490282e-02, 1.67418982e-02, 1.82192463e-02, | |
1.25626397e-02, 1.21171560e-02, 1.44875436e-02, | |
9.54992681e-03, 1.15110910e-02, 8.98219412e-03, | |
1.03942738e-02, 1.08542616e-02, 8.26009616e-03, | |
8.96458198e-03, 8.82886486e-03, 7.77835219e-03, | |
9.81410899e-03, 1.08853418e-02, 1.11101557e-02, | |
1.28558301e-02, 5.25753619e-02, 6.98201769e-03, | |
3.49100885e-02, 7.85810868e-01, 1.02742004e-01, | |
2.27155234e-02, 1.71065732e-02, 1.71728777e-02, | |
1.34214908e-02, 1.37084651e-02, 1.15877556e-02, | |
1.36784209e-02, 1.04699024e-02, 1.08003891e-02, | |
1.34183827e-02, 9.88455757e-03, 1.22331889e-02, | |
1.04408942e-02, 1.28703342e-02, 1.51682012e-02, | |
1.25336314e-02, 1.52873422e-02, 1.68506791e-02, | |
1.67595103e-02, 2.36189229e-02, 3.11693532e-02, | |
3.76899910e-02, 5.31824629e-02, 4.85489146e-01, | |
3.89324702e-02, 9.49085986e-01, 9.91760887e-01, | |
8.53694873e-01, 2.74873788e-02, 1.44202030e-02, | |
1.16012237e-02, 7.18575530e-03, 6.55379008e-03, | |
5.04121760e-03, 5.36030823e-03, 3.88503206e-03, | |
3.74102687e-03, 4.34501986e-03, 2.78997102e-03, | |
3.18158225e-03, 2.42944005e-03, 2.62420965e-03, | |
2.80758317e-03, 2.23570645e-03, 2.76407081e-03, | |
3.13496187e-03, 3.42711628e-03, 5.17279069e-03, | |
6.74648767e-03, 7.33908456e-03, 6.47401742e-03, | |
5.55714986e-03, 4.68551485e-03, 2.34275742e-02, | |
1.35162350e-01, 8.52339774e-01, 6.46769777e-02, | |
3.05467121e-02, 2.00260453e-02, 1.01901801e-02, | |
7.24998783e-03, 4.33673179e-03, 3.43126031e-03, | |
1.99846049e-03, 1.42347575e-03, 1.30019073e-03, | |
6.57865429e-04, 5.49084531e-04, 3.58458958e-04, | |
3.38774796e-04, 2.48642052e-04, 1.03600855e-04, | |
1.02564846e-04, 5.38724446e-05, 3.52242907e-05, | |
2.07201710e-05, 7.25205984e-06, 3.10802565e-06, | |
1.03600855e-06, 0.00000000e+00, 4.69296415e-03, | |
2.34648207e-02, 6.94758526e-02, 1.28300000e+03, | |
2.09049104e+01, 4.00000000e+00, 4.99999989e-03, | |
2.49999989e-05, 0.00000000e+00, 6.24999944e-10, | |
4.99999989e-03, 7.49999966e-05, 7.49999950e-07, | |
1.31249988e-08, 9.62499946e-01, 8.68749982e-04, | |
-9.28123350e-06, 1.10769467e-06, 2.75000017e-02, | |
6.18750170e-04, 1.64062572e-05, 8.63320797e-07, | |
1.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 4.00000000e-03, 2.00000000e-02, | |
3.60000000e-02, 1.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 4.00000000e-03, | |
2.00000000e-02, 3.60000000e-02, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
2.50000000e-01, 2.50000000e-01, 5.00000000e-01, | |
8.96000000e-01, 9.60000000e-01, 9.92000000e-01, | |
7.50000000e-01, 2.50000000e-01, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 0.00000000e+00, 0.00000000e+00, | |
0.00000000e+00, 5.33333333e-03, 2.66666667e-02, | |
6.40000000e-02, 1.00000000e+00, 9.65241000e+05, | |
1.76721350e-01, 9.35867059e-02, 4.55827747e-02, | |
3.62125494e-02, 7.22043006e-01, 1.33276220e-01, | |
4.85398305e-02, 4.16591528e-02, 8.93301873e-01, | |
3.42479718e-02, 2.41211118e-02, 1.91920252e-02, | |
5.46243753e-03, 2.68911521e-03, 8.28363241e-04, | |
3.40581101e-04, 1.77381990e-01, 5.22326728e-01, | |
6.58664034e-01, 1.47194574e-01, -1.28100000e+03, | |
7.32595090e+02])> ignored | |
/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/sklearn/externals/joblib/my_exceptions.py:26: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6 | |
self.message, | |
--------------------------------------------------------------------------- | |
JoblibAttributeError Traceback (most recent call last) | |
/groups/chklovskii/home/nuneziglesiasj/data/cropped_5um3_larva_fib_10x10x10nm/cl2/<ipython-input-9-16d0d527a259> in <module>() | |
----> 1 rf = rf.fit(dat5[0], dat5[1][:, 0]) | |
/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/sklearn/ensemble/forest.py in fit(self, X, y) | |
262 self.random_state.randint(MAX_INT), | |
263 verbose=self.verbose) | |
--> 264 for i in xrange(n_jobs)) | |
265 | |
266 # Reduce | |
/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/sklearn/externals/joblib/parallel.pyc in __call__(self, iterable) | |
473 self.dispatch(function, args, kwargs) | |
474 | |
--> 475 self.retrieve() | |
476 # Make sure that we get a last message telling us we are done | |
477 elapsed_time = time.time() - self._start_time | |
/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/sklearn/externals/joblib/parallel.pyc in retrieve(self) | |
425 # Convert this to a JoblibException | |
426 exception_type = _mk_exception(exception.etype)[0] | |
--> 427 raise exception_type(report) | |
428 raise exception | |
429 | |
JoblibAttributeError: JoblibAttributeError | |
___________________________________________________________________________ | |
Multiprocessing exception: | |
........................................................................... | |
/usr/bin/ipython in <module>() | |
4 import sys | |
5 from pkg_resources import load_entry_point | |
6 | |
7 if __name__ == '__main__': | |
8 sys.exit( | |
----> 9 load_entry_point('ipython==0.12.1', 'console_scripts', 'ipython')() | |
10 ) | |
11 | |
12 | |
13 | |
........................................................................... | |
/usr/lib/python2.7/site-packages/ipython-0.12.1-py2.7.egg/IPython/frontend/terminal/ipapp.py in launch_new_instance() | |
398 | |
399 def launch_new_instance(): | |
400 """Create and run a full blown IPython instance""" | |
401 app = TerminalIPythonApp.instance() | |
402 app.initialize() | |
--> 403 app.start() | |
app.start = <bound method TerminalIPythonApp.start of <IPython.frontend.terminal.ipapp.TerminalIPythonApp object at 0x7f1382c937d0>> | |
404 | |
405 | |
406 if __name__ == '__main__': | |
407 launch_new_instance() | |
........................................................................... | |
/usr/lib/python2.7/site-packages/ipython-0.12.1-py2.7.egg/IPython/frontend/terminal/ipapp.py in start(self=<IPython.frontend.terminal.ipapp.TerminalIPythonApp object>) | |
372 if self.subapp is not None: | |
373 return self.subapp.start() | |
374 # perform any prexec steps: | |
375 if self.interact: | |
376 self.log.debug("Starting IPython's mainloop...") | |
--> 377 self.shell.mainloop() | |
self.shell.mainloop = <bound method TerminalInteractiveShell.mainloop of <IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object at 0x200b250>> | |
378 else: | |
379 self.log.debug("IPython not interactive...") | |
380 | |
381 | |
........................................................................... | |
/usr/lib/python2.7/site-packages/ipython-0.12.1-py2.7.egg/IPython/frontend/terminal/interactiveshell.py in mainloop(self=<IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object>, display_banner=None) | |
285 | |
286 with nested(self.builtin_trap, self.display_trap): | |
287 | |
288 while 1: | |
289 try: | |
--> 290 self.interact(display_banner=display_banner) | |
self.interact = <bound method TerminalInteractiveShell.interact of <IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object at 0x200b250>> | |
display_banner = None | |
291 #self.interact_with_readline() | |
292 # XXX for testing of a readline-decoupled repl loop, call | |
293 # interact_with_readline above | |
294 break | |
........................................................................... | |
/usr/lib/python2.7/site-packages/ipython-0.12.1-py2.7.egg/IPython/frontend/terminal/interactiveshell.py in interact(self=<IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object>, display_banner=False) | |
404 if (self.SyntaxTB.last_syntax_error and | |
405 self.autoedit_syntax): | |
406 self.edit_syntax_error() | |
407 if not more: | |
408 source_raw = self.input_splitter.source_raw_reset()[1] | |
--> 409 self.run_cell(source_raw, store_history=True) | |
self.run_cell = <bound method TerminalInteractiveShell.run_cell of <IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object at 0x200b250>> | |
source_raw = u'rf = rf.fit(dat5[0], dat5[1][:, 0])\n' | |
410 hlen_b4_cell = \ | |
411 self._replace_rlhist_multiline(source_raw, hlen_b4_cell) | |
412 | |
413 # Turn off the exit flag, so the mainloop can be restarted if desired | |
........................................................................... | |
/usr/lib/python2.7/site-packages/ipython-0.12.1-py2.7.egg/IPython/core/interactiveshell.py in run_cell(self=<IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object>, raw_cell=u'rf = rf.fit(dat5[0], dat5[1][:, 0])\n', store_history=True) | |
2410 if store_history: | |
2411 self.execution_count += 1 | |
2412 return None | |
2413 | |
2414 self.run_ast_nodes(code_ast.body, cell_name, | |
-> 2415 interactivity="last_expr") | |
2416 | |
2417 # Execute any registered post-execution functions. | |
2418 for func, status in self._post_execute.iteritems(): | |
2419 if self.disable_failing_post_execute and not status: | |
........................................................................... | |
/usr/lib/python2.7/site-packages/ipython-0.12.1-py2.7.egg/IPython/core/interactiveshell.py in run_ast_nodes(self=<IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object>, nodelist=[<_ast.Assign object>], cell_name='<ipython-input-9-16d0d527a259>', interactivity='none') | |
2480 | |
2481 try: | |
2482 for i, node in enumerate(to_run_exec): | |
2483 mod = ast.Module([node]) | |
2484 code = self.compile(mod, cell_name, "exec") | |
-> 2485 if self.run_code(code): | |
self.run_code = <bound method TerminalInteractiveShell.run_code of <IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object at 0x200b250>> | |
code = <code object <module> at 0x4792530, file "<ipython-input-9-16d0d527a259>", line 1> | |
2486 return True | |
2487 | |
2488 for i, node in enumerate(to_run_interactive): | |
2489 mod = ast.Interactive([node]) | |
........................................................................... | |
/usr/lib/python2.7/site-packages/ipython-0.12.1-py2.7.egg/IPython/core/interactiveshell.py in run_code(self=<IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object>, code_obj=<code object <module> at 0x4792530, file "<ipython-input-9-16d0d527a259>", line 1>) | |
2533 outflag = 1 # happens in more places, so it's easier as default | |
2534 try: | |
2535 try: | |
2536 self.hooks.pre_run_code_hook() | |
2537 #rprint('Running code', repr(code_obj)) # dbg | |
-> 2538 exec code_obj in self.user_global_ns, self.user_ns | |
code_obj = <code object <module> at 0x4792530, file "<ipython-input-9-16d0d527a259>", line 1> | |
self.user_global_ns = {'disp': <function disp at 0x2507488>, 'union1d': <function union1d at 0x250a758>, 'all': <function all at 0x244b398>, 'dist': <function dist at 0x2bcecf8>, 'issubsctype': <function issubsctype at 0x23e9320>, 'sca': <function sca at 0x3347758>, 'savez': <function savez at 0x2592938>, 'entropy': <function entropy at 0x2bce488>, 'atleast_2d': <function atleast_2d at 0x24722a8>, 'restoredot': <built-in function restoredot>, 'ptp': <function ptp at 0x244b500>, 'Subplot': <class 'matplotlib.axes.AxesSubplot'>, 'frange': <function frange at 0x2bcf6e0>, 'PackageLoader': <class numpy._import_tools.PackageLoader at 0x22cc050>, 'show': <function show at 0x32ea7d0>, 'fft2': <function fft2 at 0x259d2a8>, 'rec2csv': <function rec2csv at 0x2bd0c80>, 'ix_': <function ix_ at 0x2511488>, 'resize': <function resize at 0x2440c80>, 'blackman': <function blackman at 0x2507758>, 'norm': <function norm at 0x2576578>, 'FLOATING_POINT_SUPPORT': 1, 'MultipleLocator': <class matplotlib.ticker.MultipleLocator at 0x2b2c258>, 'mlab': <module 'matplotlib.mlab' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/mlab.pyc'>, 'pkgload': <function pkgload at 0x22cb050>, 'mpl': <module 'matplotlib.mpl' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/mpl.pyc'>, 'rc': <function rc at 0x32eaaa0>, 'thetagrids': <function thetagrids at 0x3348320>, 'ERR_RAISE': 2, 'cool': <function cool at 0x334a668>, 'tri': <function tri at 0x24e8ed8>, 'lapack_lite': <module 'numpy.linalg.lapack_lite' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/linalg/lapack_lite.so'>, 'diag_indices': <function diag_indices at 0x2512050>, 'window_hanning': <function window_hanning at 0x2bc9b18>, 'array_equal': <function array_equal at 0x244cb90>, 'FormatStrFormatter': <class matplotlib.ticker.FormatStrFormatter at 0x2adfc80>, 'tanh': <ufunc 'tanh'>, 'longest_contiguous_ones': <function longest_contiguous_ones at 0x2bce668>, 'get_plot_commands': <function get_plot_commands at 0x3348410>, 'uint32': <type 'numpy.uint32'>, 'array_equiv': <function array_equiv at 0x244cc08>, 'fftn': <function fftn at 0x259d1b8>, 'indices': <function indices at 0x244c6e0>, 'fftpack': <module 'numpy.fft.fftpack' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/fft/fftpack.pyc'>, 'loads': <built-in function loads>, '_ii': u'rf = rf.fit(dat5[0], dat5[1][:, 0])', 'set_numeric_ops': <built-in function set_numeric_ops>, 'pmt': <function pmt at 0x2593320>, 'polar': <function polar at 0x3348848>, 'diag_indices_from': <function diag_indices_from at 0x25120c8>, 'object0': <type 'numpy.object_'>, 'ishold': <function ishold at 0x3347578>, 'rate': <function rate at 0x25935f0>, 'FPE_OVERFLOW': 2, 'Circle': <class 'matplotlib.patches.Circle'>, 'index_exp': <numpy.lib.index_tricks.IndexExpression object at 0x250ea10>, 'append': <function append at 0x250c0c8>, 'logseries': <built-in method logseries of mtrand.RandomState object at 0x7f1382d162d0>, 'nanargmax': <function nanargmax at 0x2507410>, 'hstack': <function hstack at 0x2472410>, 'typename': <function typename at 0x24e8140>, 'YearLocator': <class matplotlib.dates.YearLocator at 0x2e5def0>, 'diag': <function diag at 0x24e8de8>, 'pyplot': <module 'matplotlib.pyplot' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/pyplot.pyc'>, 'axes': <function axes at 0x3347668>, 'ERR_WARN': 1, 'unravel_index': <built-in function unravel_index>, 'uniform': <built-in method uniform of mtrand.RandomState object at 0x7f1382d162d0>, 'polyfit': <function polyfit at 0x2576848>, 'nanmin': <function nanmin at 0x25072a8>, 'memmap': <class 'numpy.core.memmap.memmap'>, 'axvline': <function axvline at 0x3348c80>, 'irfftn': <function irfftn at 0x259d488>, 'nan_to_num': <function nan_to_num at 0x24e7f50>, 'twinx': <function twinx at 0x33479b0>, 'contourf': <function contourf at 0x3349140>, 'complex64': <type 'numpy.complex64'>, 'fmax': <ufunc 'fmax'>, 'copysign': <ufunc 'copysign'>, 'matplotlib': <module 'matplotlib' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/__init__.pyc'>, 'l2norm': <function l2norm at 0x2bcf5f0>, 'FigureCanvasBase': <class 'matplotlib.backend_bases.FigureCanvasBase'>, 'sinh': <ufunc 'sinh'>, 'unicode_': <type 'numpy.unicode_'>, 'rgrids': <function rgrids at 0x33482a8>, 'legend': <function legend at 0x334a1b8>, 'trunc': <ufunc 'trunc'>, 'box': <function box at 0x3347c08>, 'vstack': <function vstack at 0x2472398>, 'ERR_PRINT': 4, 'levypdf': <function levypdf at 0x2bce578>, 'IndexDateFormatter': <class matplotlib.dates.IndexDateFormatter at 0x2e5da78>, 'MO': MO, 'asscalar': <function asscalar at 0x24e80c8>, 'LogLocator': <class matplotlib.ticker.LogLocator at 0x2b2c328>, 'binomial': <built-in method binomial of mtrand.RandomState object at 0x7f1382d162d0>, 'broken_barh': <function broken_barh at 0x3348e60>, 'poisson': <built-in method poisson of mtrand.RandomState object at 0x7f1382d162d0>, 'HourLocator': <class matplotlib.dates.HourLocator at 0x2eae120>, 'less_equal': <ufunc 'less_equal'>, 'l1norm': <function l1norm at 0x2bcf578>, 'BUFSIZE': 8192, 'sci': <function sci at 0x32eab90>, 'object_': <type 'numpy.object_'>, 'FR': FR, 'shuffle': <built-in method shuffle of mtrand.RandomState object at 0x7f1382d162d0>, 'divide': <ufunc 'divide'>, 'csingle': <type 'numpy.complex64'>, 'dtype': <type 'numpy.dtype'>, 'unsignedinteger': <type 'numpy.unsignedinteger'>, 'fftshift': <function fftshift at 0x259d5f0>, 'fastCopyAndTranspose': <built-in function _fastCopyAndTranspose>, 'num2date': <function num2date at 0x2ea7f50>, 'silent_list': <class 'matplotlib.cbook.silent_list'>, 'bitwise_and': <ufunc 'bitwise_and'>, 'uintc': <type 'numpy.uint32'>, 'viz': <module 'ray.viz' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/viz.pyc'>, 'byte': <type 'numpy.int8'>, 'select': <function select at 0x250ab18>, 'ticklabel_format': <function ticklabel_format at 0x334a398>, 'deg2rad': <ufunc 'deg2rad'>, 'plot': <function plot at 0x33497d0>, 'nditer': <type 'numpy.nditer'>, 'eye': <function eye at 0x24e8d70>, 'triu_indices': <function triu_indices at 0x24fc320>, 'kron': <function kron at 0x2512848>, 'newbuffer': <built-in function newbuffer>, 'negative': <ufunc 'negative'>, 'mintypecode': <function mintypecode at 0x24e7848>, 'standard_gamma': <built-in method standard_gamma of mtrand.RandomState object at 0x7f1382d162d0>, 'lstsq': <function lstsq at 0x2576500>, 'MAXDIMS': 32, 'clabel': <function clabel at 0x3349050>, 'setxor1d': <function setxor1d at 0x250a668>, 'rk4': <function rk4 at 0x2bceb18>, 'fftfreq': <function fftfreq at 0x259d6e0>, 'ifft2': <function ifft2 at 0x259d320>, 'einsum': <built-in function einsum>, 'uint0': <type 'numpy.uint64'>, 'zeros_like': <function zeros_like at 0x23ea7d0>, 'ylabel': <function ylabel at 0x3347de8>, 'int_asbuffer': <built-in function int_asbuffer>, 'uint8': <type 'numpy.uint8'>, 'chararray': <class 'numpy.core.defchararray.chararray'>, 'linspace': <function linspace at 0x2469848>, 'hold': <function hold at 0x3347500>, 'mirr': <function mirr at 0x2593758>, 'uint64': <type 'numpy.uint64'>, 'sample': <built-in method random_sample of mtrand.RandomState object at 0x7f1382d162d0>, 'ma': <module 'numpy.ma' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/ma/__init__.pyc'>, 'f': <built-in method f of mtrand.RandomState object at 0x7f1382d162d0>, 'Text': <class 'matplotlib.text.Text'>, 'true_divide': <ufunc 'true_divide'>, 'det': <function det at 0x2576488>, 'SU': SU, 'DateLocator': <class matplotlib.dates.DateLocator at 0x2e5ddb8>, '_i8': u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=2, shared=True, compute_importances=True)', 'SA': SA, 'finfo': <class 'numpy.core.getlimits.finfo'>, 'scatter': <function scatter at 0x3349a28>, 'Out': {}, 'Normalize': <class matplotlib.colors.Normalize at 0x27132c0>, 'spy': <function spy at 0x3348a28>, 'MinuteLocator': <class matplotlib.dates.MinuteLocator at 0x2eae188>, 'quiver': <function quiver at 0x3349938>, 'figure': <function figure at 0x32eac08>, 'subplot2grid': <function subplot2grid at 0x3347938>, 'dat5': [array([[ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, ..., | |
1.47194574e-01, -1.28100000e+03, 7.32595090e+02], | |
[ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, ..., | |
9.45086441e-02, -3.00000000e+00, -3.83166667e+02], | |
[ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, ..., | |
7.60885048e-02, -4.00000000e+00, -2.91428571e+02], | |
..., | |
[ 4.65202400e+06, 2.34875150e-01, 1.27652888e-01, ..., | |
4.84076382e-03, -1.00000000e+00, -3.57142857e-02], | |
[ 4.51129100e+06, 2.06613439e-01, 1.00846416e-01, ..., | |
2.89776650e-03, 0.00000000e+00, 0.00000000e+00], | |
[ 6.83703100e+06, 2.09185104e-01, 1.00843112e-01, ..., | |
9.15349975e-03, 0.00000000e+00, 0.00000000e+00]]), array([[-1., -1., -1.], | |
[-1., -1., -1.], | |
[-1., -1., -1.], | |
..., | |
[ 1., 1., 1.], | |
[ 1., 1., 1.], | |
[ 1., 1., 1.]]), array([[ 2.60137334e-06, 1.58145425e-08], | |
[ 6.00314360e-07, 2.94912022e-13], | |
[ 7.63666348e-07, 7.37280054e-13], | |
..., | |
[ 8.52329181e-01, 3.88535872e-01], | |
[ 6.46256899e-01, 2.10060368e-01], | |
[ 9.72391771e-01, 4.75216048e-01]]), array([[ 1221, 10564], | |
[10269, 10564], | |
[10271, 10564], | |
..., | |
[ 8035, 11185], | |
[11185, 39787], | |
[31356, 33347]], dtype=int32)], 'get_sparse_matrix': <function get_sparse_matrix at 0x2bcec80>, 'add_newdoc': <function add_newdoc at 0x2507e60>, 'seterrcall': <function seterrcall at 0x244ce60>, 'autumn': <function autumn at 0x33489b0>, 'logical_or': <ufunc 'logical_or'>, 'minimum': <ufunc 'minimum'>, 'WRAP': 1, 'tan': <ufunc 'tan'>, 'rms_flat': <function rms_flat at 0x2bcf500>, 'absolute': <ufunc 'absolute'>, 'gca': <function gca at 0x33477d0>, 'winter': <function winter at 0x334ab90>, 'gcf': <function gcf at 0x32eacf8>, 'gci': <function gci at 0x32eaa28>, 'csd': <function csd at 0x33491b8>, 'RRuleLocator': <class matplotlib.dates.RRuleLocator at 0x2e5de20>, 'get_array_wrap': <function get_array_wrap at 0x25127d0>, 'polymul': <function polymul at 0x2576a28>, 'hot': <function hot at 0x334a848>, 'minorticks_off': <function minorticks_off at 0x3348230>, 'get_ipython': <bound method TerminalInteractiveShell.get_ipython of <IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object at 0x200b250>>, 'get_figlabels': <function get_figlabels at 0x32eade8>, 'tile': <function tile at 0x25128c0>, 'array_str': <function array_str at 0x244c320>, 'eigvalsh': <function eigvalsh at 0x2576050>, 'iterable': <function iterable at 0x250a848>, 'pinv': <function pinv at 0x2576398>, 'classify': <module 'ray.classify' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/classify.pyc'>, 'longlong': <type 'numpy.int64'>, 'pink': <function pink at 0x334a9b0>, 'product': <function product at 0x244b1b8>, 'int16': <type 'numpy.int16'>, 's_': <numpy.lib.index_tricks.IndexExpression object at 0x250ea90>, 'mat': <function asmatrix at 0x250c320>, 'fv': <function fv at 0x25932a8>, 'summer': <function summer at 0x334ab18>, 'yticks': <function yticks at 0x3348140>, 'docstring': <module 'matplotlib.docstring' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/docstring.pyc'>, 'asanyarray': <function asanyarray at 0x23ea938>, 'uint': <type 'numpy.uint64'>, 'negative_binomial': <built-in method negative_binomial of mtrand.RandomState object at 0x7f1382d162d0>, 'npv': <function npv at 0x25936e0>, 'logaddexp': <ufunc 'logaddexp'>, 'flatnonzero': <function flatnonzero at 0x23eac08>, 'short': <type 'numpy.int16'>, 'correlate': <function correlate at 0x23eacf8>, 'getfigs': <function getfigs at 0x1f7f230>, 'fromstring': <built-in function fromstring>, 'pylab_setup': <function pylab_setup at 0x301ba28>, 'left_shift': <ufunc 'left_shift'>, 'tricontour': <function tricontour at 0x3349cf8>, 'subplots': <function subplots at 0x33478c0>, 'searchsorted': <function searchsorted at 0x2440c08>, 'barbs': <function barbs at 0x334a050>, 'int64': <type 'numpy.int64'>, 'gamma': <built-in method gamma of mtrand.RandomState object at 0x7f1382d162d0>, 'may_share_memory': <function may_share_memory at 0x24fcb90>, '__': '', 'GridSpec': <class 'matplotlib.gridspec.GridSpec'>, 'help': Type help() for interactive help, or help(object) for help about object., 'xlim': <function xlim at 0x3347e60>, 'copper': <function copper at 0x334a6e0>, 'MONTHLY': 1, 'dsplit': <function dsplit at 0x25126e0>, 'intersect1d': <function intersect1d at 0x250a5f0>, 'cosh': <ufunc 'cosh'>, 'window_none': <function window_none at 0x2bc9b90>, 'can_cast': <built-in function can_cast>, 'ppmt': <function ppmt at 0x2593488>, '__package__': None, 'cumsum': <function cumsum at 0x244b410>, 'roots': <function roots at 0x25765f0>, 'Widget': <class 'matplotlib.widgets.Widget'>, 'outer': <function outer at 0x23eade8>, 'intc': <type 'numpy.int32'>, 'fix': <function fix at 0x24e7a28>, 'stineman_interp': <function stineman_interp at 0x2bd0e60>, 'cla': <function cla at 0x334a0c8>, 'timedelta64': <type 'numpy.timedelta64'>, 'strpdate2num': <class matplotlib.dates.strpdate2num at 0x2e5d530>, 'standard_exponential': <built-in method standard_exponential of mtrand.RandomState object at 0x7f1382d162d0>, 'subplot_tool': <function subplot_tool at 0x3347b18>, 'choose': <function choose at 0x24407d0>, '_i': u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=2, shared=True, compute_importances=True)', 'FPE_INVALID': 8, 'fill_diagonal': <function fill_diagonal at 0x25119b0>, 'void0': <type 'numpy.void'>, 'get_fignums': <function get_fignums at 0x32ead70>, 'exception_to_str': <function exception_to_str at 0x2710a28>, 'SECONDLY': 6, 'logaddexp2': <ufunc 'logaddexp2'>, 'greater': <ufunc 'greater'>, 'suptitle': <function suptitle at 0x3347410>, 'get_backend': <function get_backend at 0x271f668>, 'matrix_power': <function matrix_power at 0x250c398>, 'histogram2d': <function histogram2d at 0x24fc140>, 'polyint': <function polyint at 0x2576758>, 'nonzero': <function nonzero at 0x2440ed8>, 'rank': <function rank at 0x244b848>, 'quiverkey': <function quiverkey at 0x33499b0>, 'datetime64': <type 'numpy.datetime64'>, 'complexfloating': <type 'numpy.complexfloating'>, 'is_numlike': <function is_numlike at 0x2711848>, 'ndindex': <class 'numpy.lib.index_tricks.ndindex'>, 'ctypeslib': <module 'numpy.ctypeslib' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/ctypeslib.pyc'>, 'waitforbuttonpress': <function waitforbuttonpress at 0x3347320>, 'PZERO': 0.0, 'relativedelta': <class dateutil.relativedelta.relativedelta at 0x2e5d4c8>, 'MonthLocator': <class matplotlib.dates.MonthLocator at 0x2e5df58>, 'asfarray': <function asfarray at 0x24e7b90>, 'radians': <ufunc 'radians'>, 'sin': <ufunc 'sin'>, 'fliplr': <function fliplr at 0x24e8c08>, 'alen': <function alen at 0x244b668>, 'recarray': <class 'numpy.core.records.recarray'>, 'fmod': <ufunc 'fmod'>, 'bone': <function bone at 0x334a5f0>, 'mean': <function mean at 0x244ba28>, 'griddata': <function griddata at 0x2bd0cf8>, 'poly_below': <function poly_below at 0x2bd0f50>, 'square': <ufunc 'square'>, 'isvector': <function isvector at 0x2bcf9b0>, 'ogrid': <numpy.lib.index_tricks.nd_grid object at 0x250e910>, 'bytes': <type 'str'>, 'nanargmin': <function nanargmin at 0x2507320>, 'r_': <numpy.lib.index_tricks.RClass object at 0x250e950>, 'agglo': <module 'ray.agglo' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/agglo.pyc'>, 'hanning': <function hanning at 0x2507848>, 'connect': <function connect at 0x32eaf50>, 'str_': <type 'numpy.string_'>, 'margins': <function margins at 0x334a500>, 'allclose': <function allclose at 0x244cb18>, 'extract': <function extract at 0x25070c8>, 'float16': <type 'numpy.float16'>, 'ulonglong': <type 'numpy.uint64'>, 'matrix': <class 'numpy.matrixlib.defmatrix.matrix'>, 'asarray': <function asarray at 0x23ea8c0>, 'True_': True, 'IndexLocator': <class matplotlib.ticker.IndexLocator at 0x2b2c050>, 'poly1d': <class 'numpy.lib.polynomial.poly1d'>, 'rf': RandomForestClassifier(bootstrap=True, compute_importances=True, | |
criterion='gini', max_depth=20, max_features='auto', | |
min_density=0.1, min_samples_leaf=1, min_samples_split=1, | |
n_estimators=100, n_jobs=2, oob_score=False, | |
random_state=<mtrand.RandomState object at 0x7f1382d162d0>, | |
shared=True, verbose=0), 'void': <type 'numpy.void'>, 'promote_types': <built-in function promote_types>, 'rec': <module 'numpy.core.records' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/core/records.pyc'>, 'arange': <built-in function arange>, 'plotting': <function plotting at 0x3348398>, 'math': <module 'math' from '/usr/lib64/python2.7/lib-dynload/math.so'>, 'get_cmap': <function get_cmap at 0x2dbac80>, 'log2': <ufunc 'log2'>, 'specgram': <function specgram at 0x3349b90>, 'date2num': <function date2num at 0x2ea7de8>, '__builtins__': {'bytearray': <type 'bytearray'>, 'IndexError': <type 'exceptions.IndexError'>, 'all': <built-in function all>, 'help': Type help() for interactive help, or help(object) for help about object., 'vars': <built-in function vars>, 'SyntaxError': <type 'exceptions.SyntaxError'>, '__IPYTHON__active': 'Deprecated, check for __IPYTHON__', 'unicode': <type 'unicode'>, 'UnicodeDecodeError': <type 'exceptions.UnicodeDecodeError'>, 'memoryview': <type 'memoryview'>, 'isinstance': <built-in function isinstance>, 'copyright': Copyright (c) 2001-2011 Python Software Foundation. | |
All Rights Reserved. | |
Copyright (c) 2000 BeOpen.com. | |
All Rights Reserved. | |
Copyright (c) 1995-2001 Corporation for National Research Initiatives. | |
All Rights Reserved. | |
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. | |
All Rights Reserved., 'NameError': <type 'exceptions.NameError'>, 'BytesWarning': <type 'exceptions.BytesWarning'>, 'dict': <type 'dict'>, 'input': <built-in function input>, 'oct': <built-in function oct>, 'bin': <built-in function bin>, 'SystemExit': <type 'exceptions.SystemExit'>, 'StandardError': <type 'exceptions.StandardError'>, 'format': <built-in function format>, 'repr': <built-in function repr>, 'sorted': <built-in function sorted>, 'False': False, 'RuntimeWarning': <type 'exceptions.RuntimeWarning'>, 'list': <type 'list'>, 'iter': <built-in function iter>, 'reload': <built-in function reload>, 'Warning': <type 'exceptions.Warning'>, '__package__': None, 'round': <built-in function round>, 'dir': <built-in function dir>, 'cmp': <built-in function cmp>, 'set': <type 'set'>, 'bytes': <type 'str'>, 'reduce': <built-in function reduce>, 'intern': <built-in function intern>, 'issubclass': <built-in function issubclass>, 'Ellipsis': Ellipsis, 'EOFError': <type 'exceptions.EOFError'>, 'locals': <built-in function locals>, 'BufferError': <type 'exceptions.BufferError'>, 'slice': <type 'slice'>, 'FloatingPointError': <type 'exceptions.FloatingPointError'>, 'sum': <built-in function sum>, 'getattr': <built-in function getattr>, 'abs': <built-in function abs>, 'print': <built-in function print>, 'True': True, 'FutureWarning': <type 'exceptions.FutureWarning'>, 'ImportWarning': <type 'exceptions.ImportWarning'>, 'None': None, 'hash': <built-in function hash>, 'ReferenceError': <type 'exceptions.ReferenceError'>, 'len': <built-in function len>, 'credits': Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands | |
for supporting Python development. See www.python.org for more information., 'frozenset': <type 'frozenset'>, '__name__': '__builtin__', 'ord': <built-in function ord>, 'super': <type 'super'>, 'TypeError': <type 'exceptions.TypeError'>, 'license': See http://www.python.org/2.7/license.html, 'KeyboardInterrupt': <type 'exceptions.KeyboardInterrupt'>, 'UserWarning': <type 'exceptions.UserWarning'>, 'filter': <built-in function filter>, 'range': <built-in function range>, 'staticmethod': <type 'staticmethod'>, 'SystemError': <type 'exceptions.SystemError'>, 'BaseException': <type 'exceptions.BaseException'>, 'pow': <built-in function pow>, 'RuntimeError': <type 'exceptions.RuntimeError'>, 'float': <type 'float'>, 'MemoryError': <type 'exceptions.MemoryError'>, 'StopIteration': <type 'exceptions.StopIteration'>, 'globals': <built-in function globals>, 'divmod': <built-in function divmod>, 'enumerate': <type 'enumerate'>, 'apply': <built-in function apply>, 'LookupError': <type 'exceptions.LookupError'>, 'open': <built-in function open>, 'basestring': <type 'basestring'>, 'UnicodeError': <type 'exceptions.UnicodeError'>, 'zip': <built-in function zip>, 'hex': <built-in function hex>, 'long': <type 'long'>, 'next': <built-in function next>, 'ImportError': <type 'exceptions.ImportError'>, 'chr': <built-in function chr>, 'xrange': <type 'xrange'>, 'type': <type 'type'>, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", 'Exception': <type 'exceptions.Exception'>, '__IPYTHON__': True, 'tuple': <type 'tuple'>, 'UnicodeTranslateError': <type 'exceptions.UnicodeTranslateError'>, 'reversed': <type 'reversed'>, 'UnicodeEncodeError': <type 'exceptions.UnicodeEncodeError'>, 'IOError': <type 'exceptions.IOError'>, 'hasattr': <built-in function hasattr>, 'delattr': <built-in function delattr>, 'setattr': <built-in function setattr>, 'raw_input': <built-in function raw_input>, 'SyntaxWarning': <type 'exceptions.SyntaxWarning'>, 'compile': <built-in function compile>, 'ArithmeticError': <type 'exceptions.ArithmeticError'>, 'str': <type 'str'>, 'property': <type 'property'>, 'dreload': <function reload at 0x201b398>, 'GeneratorExit': <type 'exceptions.GeneratorExit'>, 'int': <type 'int'>, '__import__': <built-in function __import__>, 'KeyError': <type 'exceptions.KeyError'>, 'coerce': <built-in function coerce>, 'PendingDeprecationWarning': <type 'exceptions.PendingDeprecationWarning'>, 'file': <type 'file'>, 'EnvironmentError': <type 'exceptions.EnvironmentError'>, 'unichr': <built-in function unichr>, 'id': <built-in function id>, 'OSError': <type 'exceptions.OSError'>, 'DeprecationWarning': <type 'exceptions.DeprecationWarning'>, 'min': <built-in function min>, 'UnicodeWarning': <type 'exceptions.UnicodeWarning'>, 'execfile': <built-in function execfile>, 'any': <built-in function any>, 'complex': <type 'complex'>, 'bool': <type 'bool'>, 'get_ipython': <bound method TerminalInteractiveShell.get_ipython of <IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object at 0x200b250>>, 'ValueError': <type 'exceptions.ValueError'>, 'NotImplemented': NotImplemented, 'map': <built-in function map>, 'buffer': <type 'buffer'>, 'max': <built-in function max>, 'object': <type 'object'>, 'TabError': <type 'exceptions.TabError'>, 'callable': <built-in function callable>, 'ZeroDivisionError': <type 'exceptions.ZeroDivisionError'>, 'eval': <built-in function eval>, '__debug__': True, 'IndentationError': <type 'exceptions.IndentationError'>, 'AssertionError': <type 'exceptions.AssertionError'>, 'classmethod': <type 'classmethod'>, 'UnboundLocalError': <type 'exceptions.UnboundLocalError'>, 'NotImplementedError': <type 'exceptions.NotImplementedError'>, 'AttributeError': <type 'exceptions.AttributeError'>, 'OverflowError': <type 'exceptions.OverflowError'>}, 'rec_join': <function rec_join at 0x2bcfd70>, 'acorr': <function acorr at 0x3348aa0>, 'cumproduct': <function cumproduct at 0x244b488>, 'diagonal': <function diagonal at 0x2440d70>, 'atleast_1d': <function atleast_1d at 0x2469e60>, 'meshgrid': <function meshgrid at 0x2507ed8>, 'LogFormatter': <class matplotlib.ticker.LogFormatter at 0x2adfdb8>, 'column_stack': <function column_stack at 0x2512398>, 'put': <function put at 0x24408c0>, '___': '', 'remainder': <ufunc 'remainder'>, 'get_scale_docs': <function get_scale_docs at 0x2b30500>, 'row_stack': <function vstack at 0x2472398>, 'expm1': <ufunc 'expm1'>, 'RandomForestClassifier': <class 'sklearn.ensemble.forest.RandomForestClassifier'>, 'nper': <function nper at 0x2593398>, 'insert': <function insert at 0x250c050>, 'semilogx': <function semilogx at 0x3349aa0>, 'semilogy': <function semilogy at 0x3349b18>, 'ndfromtxt': <function ndfromtxt at 0x2592cf8>, 'sometrue': <function sometrue at 0x244b230>, 'place': <function place at 0x2507140>, 'DataSource': <class 'numpy.lib._datasource.DataSource'>, 'newaxis': None, 'arccos': <ufunc 'arccos'>, 'epoch2num': <function epoch2num at 0x2ead578>, 'signedinteger': <type 'numpy.signedinteger'>, 'ndim': <function ndim at 0x244b7d0>, 'rand': <built-in method rand of mtrand.RandomState object at 0x7f1382d162d0>, 'irfft': <function irfft at 0x2593ed8>, 'ranf': <built-in method random_sample of mtrand.RandomState object at 0x7f1382d162d0>, 'subplots_adjust': <function subplots_adjust at 0x3347aa0>, 'rint': <ufunc 'rint'>, 'fill_between': <function fill_between at 0x3349320>, 'Axes': <class 'matplotlib.axes.Axes'>, 'MaxNLocator': <class matplotlib.ticker.MaxNLocator at 0x2b2c2c0>, 'arctan2': <ufunc 'arctan2'>, 'little_endian': True, 'ldexp': <ufunc 'ldexp'>, 'lognormal': <built-in method lognormal of mtrand.RandomState object at 0x7f1382d162d0>, 'lookfor': <function lookfor at 0x24fce60>, 'hfft': <function hfft at 0x2593f50>, 'array': <built-in function array>, 'common_type': <function common_type at 0x24e81b8>, 'size': <function size at 0x244b8c0>, 'logical_xor': <ufunc 'logical_xor'>, 'geterrcall': <function geterrcall at 0x244ced8>, 'figimage': <function figimage at 0x3347488>, 'jet': <function jet at 0x334a938>, 'figaspect': <function figaspect at 0x2ffa848>, 'Line2D': <class 'matplotlib.lines.Line2D'>, 'exp2': <ufunc 'exp2'>, 'imshow': <function imshow at 0x3349578>, 'axhline': <function axhline at 0x3348b90>, 'bool8': <type 'numpy.bool_'>, 'colormaps': <function colormaps at 0x3348500>, 'msort': <function msort at 0x2507c08>, 'alltrue': <function alltrue at 0x244b2a8>, 'zeros': <built-in function zeros>, 'identity': <function identity at 0x244caa0>, 'False_': False, 'ispower2': <function ispower2 at 0x2bcf938>, 'LogFormatterExponent': <class matplotlib.ticker.LogFormatterExponent at 0x2adfe20>, 'ihfft': <function ihfft at 0x259d050>, 'nansum': <function nansum at 0x2507230>, 'bool_': <type 'numpy.bool_'>, 'inexact': <type 'numpy.inexact'>, 'distances_along_curve': <function distances_along_curve at 0x2bd1320>, 'broadcast': <type 'numpy.broadcast'>, 'liaupunov': <function liaupunov at 0x2bceed8>, 'amin': <function amin at 0x244b5f0>, 'arctanh': <ufunc 'arctanh'>, 'typecodes': {'All': '?bhilqpBHILQPefdgFDGSUVOMm', 'Complex': 'FDG', 'AllFloat': 'efdgFDG', 'Integer': 'bhilqp', 'UnsignedInteger': 'BHILQP', 'Float': 'efdg', 'Character': 'c', 'Datetime': 'Mm', 'AllInteger': 'bBhHiIlLqQpP'}, 'number': <type 'numpy.number'>, 'savetxt': <function savetxt at 0x2592b90>, 'copy': <function copy at 0x250ab90>, 'int_': <type 'numpy.int64'>, 'std': <function std at 0x244baa0>, 'segments_intersect': <function segments_intersect at 0x2bcede8>, 'not_equal': <ufunc 'not_equal'>, 'fromfunction': <function fromfunction at 0x244c758>, 'Figure': <class 'matplotlib.figure.Figure'>, 'tril_indices_from': <function tril_indices_from at 0x24fc2a8>, 'double': <type 'numpy.float64'>, 'require': <function require at 0x23eaaa0>, 'triplot': <function triplot at 0x3349e60>, '_iii': u"dat5 = classify.load_training_data_from_disk('training/multi-channel-graph-e05-5.trdat.h5')", 'xlabel': <function xlabel at 0x3347d70>, 'typeNA': {<type 'numpy.unicode_'>: 'Unicode0', 'd8': 'Datetime64', 'Int32': <type 'numpy.int32'>, 'Complex64': <type 'numpy.complex128'>, <type 'numpy.void'>: 'Void0', <type 'numpy.int8'>: 'Int8', 'c16': 'Complex64', 'D': 'Complex64', 'H': 'UInt16', 'L': 'UInt64', <type 'numpy.int16'>: 'Int16', <type 'numpy.datetime64'>: 'Datetime64', 'd': 'Float64', 't8': 'Timedelta64', 'h': 'Int16', 'l': 'Int64', <type 'numpy.int32'>: 'Int32', <type 'numpy.timedelta64'>: 'Timedelta64', 'c32': 'Complex128', <type 'numpy.int64'>: 'Int64', 'Timedelta64': <type 'numpy.timedelta64'>, <type 'numpy.float16'>: 'Float16', 'b1': 'Bool', 'String0': <type 'numpy.string_'>, <type 'numpy.int64'>: 'Int64', 'I': 'UInt32', <type 'numpy.uint8'>: 'UInt8', '?': 'Bool', 'Void0': <type 'numpy.void'>, 'G': 'Complex128', 'O': 'Object0', 'UInt8': <type 'numpy.uint8'>, 'S': 'String0', <type 'numpy.uint16'>: 'UInt16', 'UInt64': <type 'numpy.uint64'>, 'g': 'Float128', <type 'numpy.uint32'>: 'UInt32', 'Float16': <type 'numpy.float16'>, <type 'numpy.uint64'>: 'UInt64', 'Bool': <type 'numpy.bool_'>, <type 'numpy.bool_'>: 'Bool', <type 'numpy.uint64'>: 'UInt64', 'u8': <type 'numpy.uint64'>, 'u4': <type 'numpy.uint32'>, 'Unicode0': <type 'numpy.unicode_'>, 'u1': <type 'numpy.uint8'>, 'u2': <type 'numpy.uint16'>, 'Datetime64': <type 'numpy.datetime64'>, 'Int8': <type 'numpy.int8'>, <type 'numpy.float32'>: 'Float32', 'B': 'UInt8', 'F': 'Complex32', 'c8': 'Complex32', 'Int64': <type 'numpy.int64'>, 'Complex32': <type 'numpy.complex64'>, 'V': 'Void0', <type 'numpy.float64'>: 'Float64', 'b': 'Int8', 'f': 'Float32', 'UInt32': <type 'numpy.uint32'>, <type 'numpy.float128'>: 'Float128', 'f16': 'Float128', 'f2': 'Float16', 'f4': 'Float32', 'f8': 'Float64', <type 'numpy.complex64'>: 'Complex32', 'Complex128': <type 'numpy.complex256'>, 'Object0': <type 'numpy.object_'>, 'Int16': <type 'numpy.int16'>, <type 'numpy.complex128'>: 'Complex64', 'Float64': <type 'numpy.float64'>, 'UInt16': <type 'numpy.uint16'>, 'Float32': <type 'numpy.float32'>, <type 'numpy.complex256'>: 'Complex128', 'i8': <type 'numpy.int64'>, 'i1': <type 'numpy.int8'>, 'i2': <type 'numpy.int16'>, 'M': 'Datetime64', 'i4': <type 'numpy.int32'>, 'Q': 'UInt64', 'U': 'Unicode0', <type 'numpy.object_'>: 'Object0', 'e': 'Float16', 'i': 'Int32', 'm': 'Timedelta64', 'q': 'Int64', <type 'numpy.string_'>: 'String0', 'Float128': <type 'numpy.float128'>}, 'getbuffer': <built-in function getbuffer>, 'xcorr': <function xcorr at 0x3349f50>, 'slogdet': <function slogdet at 0x2576410>, 'datetime_': <type 'numpy.datetime64'>, 'clip': <function clip at 0x244b0c8>, 'tripcolor': <function tripcolor at 0x3349de8>, 'half': <type 'numpy.float16'>, 'normal': <built-in method normal of mtrand.RandomState object at 0x7f1382d162d0>, 'savez_compressed': <function savez_compressed at 0x25929b0>, 'TickHelper': <class matplotlib.ticker.TickHelper at 0x2aab738>, 'isinteractive': <function isinteractive at 0x32ea848>, 'eigvals': <function eigvals at 0x2567f50>, 'seed': <built-in method seed of mtrand.RandomState object at 0x7f1382d162d0>, 'triu_indices_from': <function triu_indices_from at 0x24fc398>, 'conjugate': <ufunc 'conjugate'>, 'clim': <function clim at 0x33485f0>, 'alterdot': <built-in function alterdot>, 'asfortranarray': <function asfortranarray at 0x23eaa28>, 'binary_repr': <function binary_repr at 0x244c848>, 'angle': <function angle at 0x250ad70>, '_i9': u'rf = rf.fit(dat5[0], dat5[1][:, 0])', 'randint': <built-in method randint of mtrand.RandomState object at 0x7f1382d162d0>, '_i7': u'rf = rf.fit(dat5[0], dat5[1][:, 0])', '_i6': u"dat5 = classify.load_training_data_from_disk('training/multi-channel-graph-e05-5.trdat.h5')", '_i5': u'from ray import *', 'linalg': <module 'numpy.linalg' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/linalg/__init__.pyc'>, 'apply_over_axes': <function apply_over_axes at 0x25122a8>, '_i2': u"sys.path.insert(0, '/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/')", '_i1': u'import sys', 'figlegend': <function figlegend at 0x33471b8>, 'ERR_LOG': 5, 'right_shift': <ufunc 'right_shift'>, 'take': <function take at 0x24406e0>, 'rollaxis': <function rollaxis at 0x23eaf50>, 'set_state': <built-in method set_state of mtrand.RandomState object at 0x7f1382d162d0>, 'solve': <function solve at 0x2567cf8>, 'FixedFormatter': <class matplotlib.ticker.FixedFormatter at 0x2adfbb0>, 'boxplot': <function boxplot at 0x3348ed8>, 'SecondLocator': <class matplotlib.dates.SecondLocator at 0x2eae1f0>, 'spectral': <function spectral at 0x334ac08>, 'get_numarray_include': <function get_numarray_include at 0x24fc848>, 'trace': <function trace at 0x2440de8>, 'Artist': <class 'matplotlib.artist.Artist'>, 'any': <function any at 0x244b320>, 'Button': <class 'matplotlib.widgets.Button'>, 'who': <function who at 0x24fcc08>, 'compress': <function compress at 0x244b050>, 'NullFormatter': <class matplotlib.ticker.NullFormatter at 0x2adfb48>, 'histogramdd': <function histogramdd at 0x250a938>, 'beta': <built-in method beta of mtrand.RandomState object at 0x7f1382d162d0>, 'amap': <function amap at 0x2bcf488>, 'multiply': <ufunc 'multiply'>, 'mask_indices': <function mask_indices at 0x24fc1b8>, 'detrend_none': <function detrend_none at 0x2bc9d70>, 'amax': <function amax at 0x244b578>, 'subplot': <function subplot at 0x3347848>, 'logical_not': <ufunc 'logical_not'>, 'dist_point_to_segment': <function dist_point_to_segment at 0x2bced70>, 'nbytes': {<type 'numpy.int64'>: 8, <type 'numpy.uint64'>: 8, <type 'numpy.complex64'>: 8, <type 'numpy.unicode_'>: 0, <type 'numpy.float16'>: 2, <type 'numpy.bool_'>: 1, <type 'numpy.int64'>: 8, <type 'numpy.uint64'>: 8, <type 'numpy.complex128'>: 16, <type 'numpy.void'>: 0, <type 'numpy.int8'>: 1, <type 'numpy.uint8'>: 1, <type 'numpy.float32'>: 4, <type 'numpy.complex256'>: 32, <type 'numpy.int16'>: 2, <type 'numpy.uint16'>: 2, <type 'numpy.float64'>: 8, <type 'numpy.object_'>: 8, <type 'numpy.datetime64'>: 8, <type 'numpy.int32'>: 4, <type 'numpy.uint32'>: 4, <type 'numpy.float128'>: 16, <type 'numpy.string_'>: 0, <type 'numpy.timedelta64'>: 8}, 'exp': <ufunc 'exp'>, '_ih': ['', u'import sys', u"sys.path.insert(0, '/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/')", u'from sklearn.ensemble import RandomForestClassifier', u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=16, shared=True, compute_importances=True)', u'from ray import *', u"dat5 = classify.load_training_data_from_disk('training/multi-channel-graph-e05-5.trdat.h5')", u'rf = rf.fit(dat5[0], dat5[1][:, 0])', u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=2, shared=True, compute_importances=True)', u'rf = rf.fit(dat5[0], dat5[1][:, 0])'], 'axvspan': <function axvspan at 0x3348cf8>, 'FuncFormatter': <class matplotlib.ticker.FuncFormatter at 0x2adfc18>, 'dot': <built-in function dot>, 'int0': <type 'numpy.int64'>, 'pylab': <module 'matplotlib.pylab' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/pylab.pyc'>, 'WE': WE, 'longfloat': <type 'numpy.float128'>, 'draw_if_interactive': <function wrapper at 0x334ad70>, 'rayleigh': <built-in method rayleigh of mtrand.RandomState object at 0x7f1382d162d0>, 'text': <function text at 0x334a2a8>, 'random': <module 'numpy.random' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/random/__init__.pyc'>, 'demean': <function demean at 0x2bc9c80>, 'random_integers': <built-in method random_integers of mtrand.RandomState object at 0x7f1382d162d0>, 'datetime': <module 'datetime' from '/usr/lib64/python2.7/lib-dynload/datetime.so'>, 'colors': <function colors at 0x3348488>, 'array2string': <function array2string at 0x244bed8>, 'locator_params': <function locator_params at 0x334a410>, 'find': <function find at 0x2bce5f0>, 'pause': <function pause at 0x32ea9b0>, 'randn': <built-in method randn of mtrand.RandomState object at 0x7f1382d162d0>, 'errstate': <class 'numpy.core.numeric.errstate'>, 'title': <function title at 0x3347c80>, 'FPE_UNDERFLOW': 4, 'frexp': <ufunc 'frexp'>, 'savefig': <function savefig at 0x3347230>, 'PolarAxes': <class 'matplotlib.projections.polar.PolarAxes'>, 'DAILY': 3, 'center_matrix': <function center_matrix at 0x2bceaa0>, 'SHIFT_OVERFLOW': 3, 'over': <function over at 0x33475f0>, 'complex256': <type 'numpy.complex256'>, 'plotfile': <function plotfile at 0x33488c0>, 'get': <function getp at 0x28ad8c0>, 'NZERO': -0.0, 'ceil': <ufunc 'ceil'>, 'ones': <function ones at 0x244ca28>, 'count_nonzero': <built-in function count_nonzero>, 'gray': <function gray at 0x334a7d0>, 'qr': <function qr at 0x2567ed8>, 'bar': <function bar at 0x3348d70>, 'median': <function median at 0x2507c80>, 'geterr': <function geterr at 0x244ccf8>, 'convolve': <function convolve at 0x23ead70>, 'twiny': <function twiny at 0x3347a28>, 'logistic': <built-in method logistic of mtrand.RandomState object at 0x7f1382d162d0>, 'weibull': <built-in method weibull of mtrand.RandomState object at 0x7f1382d162d0>, 'isreal': <function isreal at 0x24e7d70>, 'where': <built-in function where>, 'rcParamsDefault': {'axes.formatter.use_locale': False, 'figure.subplot.right': 0.9, 'mathtext.cal': 'cursive', 'font.fantasy': ['Comic Sans MS', 'Chicago', 'Charcoal', 'ImpactWestern', 'fantasy'], 'xtick.minor.pad': 4, 'tk.pythoninspect': False, 'image.aspect': 'equal', 'font.cursive': ['Apple Chancery', 'Textile', 'Zapf Chancery', 'Sand', 'cursive'], 'figure.subplot.hspace': 0.2, 'keymap.fullscreen': 'f', 'examples.directory': '', 'xtick.direction': 'in', 'axes.facecolor': 'w', 'mathtext.fontset': 'cm', 'ytick.direction': 'in', 'keymap.pan': 'p', 'path.snap': True, 'axes.axisbelow': False, 'lines.markersize': 6, 'figure.dpi': 80, 'text.usetex': False, 'image.origin': 'upper', 'patch.edgecolor': 'k', 'legend.labelspacing': 0.5, 'ps.useafm': False, 'mathtext.bf': 'serif:bold', 'lines.solid_joinstyle': 'round', 'font.monospace': ['Bitstream Vera Sans Mono', 'DejaVu Sans Mono', 'Andale Mono', 'Nimbus Mono L', 'Courier New', 'Courier', 'Fixed', 'Terminal', 'monospace'], 'xtick.minor.size': 2, 'axes.formatter.limits': [-7, 7], 'figure.subplot.wspace': 0.2, 'savefig.edgecolor': 'w', 'image.cmap': 'jet', 'lines.marker': 'None', 'tk.window_focus': False, 'backend.qt4': 'PyQt4', 'font.serif': ['Bitstream Vera Serif', 'DejaVu Serif', 'New Century Schoolbook', 'Century Schoolbook L', 'Utopia', 'ITC Bookman', 'Bookman', 'Nimbus Roman No9 L', 'Times New Roman', 'Times', 'Palatino', 'Charter', 'serif'], 'savefig.facecolor': 'w', 'ytick.minor.size': 2, 'font.stretch': 'normal', 'text.dvipnghack': None, 'ytick.color': 'k', 'svg.fonttype': 'path', 'lines.linestyle': '-', 'xtick.color': 'k', 'xtick.major.pad': 4, 'patch.facecolor': 'b', 'figure.figsize': [8.0, 6.0], 'axes.linewidth': 1.0, 'keymap.zoom': 'o', 'legend.handletextpad': 0.8, 'mathtext.fallback_to_cm': True, 'lines.linewidth': 1.0, 'savefig.dpi': 100, 'verbose.fileo': 'sys.stdout', 'svg.image_noscale': False, 'docstring.hardcopy': False, 'font.size': 12, 'ps.fonttype': 3, 'path.simplify': True, 'keymap.all_axes': 'a', 'polaraxes.grid': True, 'text.hinting': True, 'pdf.compression': 6, 'grid.linewidth': 0.5, 'legend.frameon': True, 'figure.autolayout': False, 'figure.facecolor': '0.75', 'ps.usedistiller': False, 'legend.isaxes': True, 'figure.edgecolor': 'w', 'mathtext.tt': 'monospace', 'contour.negative_linestyle': 'dashed', 'image.interpolation': 'bilinear', 'lines.markeredgewidth': 0.5, 'keymap.home': ['h', 'r', 'home'], 'axes3d.grid': True, 'axes.edgecolor': 'k', 'legend.shadow': False, 'axes.titlesize': 'large', 'backend': 'Agg', 'xtick.major.size': 4, 'keymap.xscale': ['k', 'L'], 'legend.fontsize': 'large', 'lines.solid_capstyle': 'projecting', 'mathtext.it': 'serif:italic', 'keymap.save': 's', 'font.variant': 'normal', 'toolbar': 'toolbar2', 'xtick.labelsize': 'medium', 'axes.unicode_minus': True, 'ps.distiller.res': 6000, 'axes.labelweight': 'normal', 'pdf.fonttype': 3, 'patch.linewidth': 1.0, 'pdf.inheritcolor': False, 'axes.color_cycle': ['b', 'g', 'r', 'c', 'm', 'y', 'k'], 'lines.dash_capstyle': 'butt', 'lines.color': 'b', 'figure.subplot.top': 0.9, 'pdf.use14corefonts': False, 'legend.markerscale': 1.0, 'patch.antialiased': True, 'font.style': 'normal', 'keymap.forward': ['right', 'v'], 'backend_fallback': True, 'legend.fancybox': False, 'grid.linestyle': ':', 'savefig.extension': 'auto', 'text.color': 'k', 'mathtext.rm': 'serif', 'legend.loc': 'upper right', 'interactive': False, 'cairo.format': 'png', 'savefig.orientation': 'portrait', 'svg.image_inline': True, 'ytick.major.size': 4, 'axes.grid': False, 'plugins.directory': '.matplotlib_plugins', 'grid.color': 'k', 'timezone': 'UTC', 'ytick.major.pad': 4, 'legend.borderpad': 0.4, 'examples.download': True, 'lines.dash_joinstyle': 'round', 'datapath': '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/mpl-data', 'lines.antialiased': True, 'text.latex.unicode': False, 'legend.handleheight': 0.7, 'image.lut': 256, 'figure.subplot.bottom': 0.1, 'text.latex.preamble': [''], 'legend.numpoints': 2, 'legend.handlelength': 2.0, 'keymap.grid': 'g', 'font.sans-serif': ['Bitstream Vera Sans', 'DejaVu Sans', 'Lucida Grande', 'Verdana', 'Geneva', 'Lucid', 'Arial', 'Helvetica', 'Avant Garde', 'sans-serif'], 'axes.labelcolor': 'k', 'font.family': 'sans-serif', 'axes.labelsize': 'medium', 'ytick.minor.pad': 4, 'legend.borderaxespad': 0.5, 'mathtext.sf': 'sans\\-serif', 'axes.hold': True, 'verbose.level': 'silent', 'mathtext.default': 'it', 'figure.subplot.left': 0.125, 'legend.columnspacing': 2.0, 'text.latex.preview': False, 'font.weight': 'normal', 'keymap.yscale': 'l', 'image.resample': False, 'agg.path.chunksize': 0, 'path.simplify_threshold': 0.1111111111111111, 'ytick.labelsize': 'medium', 'ps.papersize': 'letter', 'svg.embed_char_paths': True, 'keymap.back': ['left', 'c', 'backspace']}, 'fftsurr': <function fftsurr at 0x2bcee60>, 'SHIFT_UNDERFLOW': 6, 'argmax': <function argmax at 0x2440b18>, 'minorticks_on': <function minorticks_on at 0x33481b8>, 'prctile': <function prctile at 0x2bce7d0>, 'deprecate_with_doc': <function <lambda> at 0x24fcaa0>, 'imsave': <function imsave at 0x33487d0>, 'polyder': <function polyder at 0x25767d0>, 'LogFormatterMathtext': <class matplotlib.ticker.LogFormatterMathtext at 0x2adfe88>, 'imread': <function imread at 0x3348758>, 'close': <function close at 0x32eaed8>, 'DayLocator': <class matplotlib.dates.DayLocator at 0x2eae0b8>, 'Formatter': <class matplotlib.ticker.Formatter at 0x2adfa78>, 'is_string_like': <function is_string_like at 0x2711668>, 'contour': <function contour at 0x33490c8>, 'rad2deg': <ufunc 'rad2deg'>, 'isnan': <ufunc 'isnan'>, 'autoscale': <function autoscale at 0x334a578>, 'get_xyz_where': <function get_xyz_where at 0x2bcec08>, 'irr': <function irr at 0x2593668>, 'sctypeDict': {0: <type 'numpy.bool_'>, 1: <type 'numpy.int8'>, 2: <type 'numpy.uint8'>, 3: <type 'numpy.int16'>, 4: <type 'numpy.uint16'>, 5: <type 'numpy.int32'>, 6: <type 'numpy.uint32'>, 7: <type 'numpy.int64'>, 8: <type 'numpy.uint64'>, 9: <type 'numpy.int64'>, 10: <type 'numpy.uint64'>, 11: <type 'numpy.float32'>, 12: <type 'numpy.float64'>, 13: <type 'numpy.float128'>, 14: <type 'numpy.complex64'>, 15: <type 'numpy.complex128'>, 16: <type 'numpy.complex256'>, 17: <type 'numpy.object_'>, 18: <type 'numpy.string_'>, 19: <type 'numpy.unicode_'>, 20: <type 'numpy.void'>, 21: <type 'numpy.datetime64'>, 'unicode': <type 'numpy.unicode_'>, 23: <type 'numpy.float16'>, 'cfloat': <type 'numpy.complex128'>, 'longfloat': <type 'numpy.float128'>, 'Int32': <type 'numpy.int32'>, 'Complex64': <type 'numpy.complex128'>, 'unicode_': <type 'numpy.unicode_'>, 'complex': <type 'numpy.complex128'>, 'timedelta64': <type 'numpy.timedelta64'>, 'uint16': <type 'numpy.uint16'>, 'c16': <type 'numpy.complex128'>, 'float32': <type 'numpy.float32'>, 'complex256': <type 'numpy.complex256'>, 'D': <type 'numpy.complex128'>, 'H': <type 'numpy.uint16'>, 'void': <type 'numpy.void'>, 'unicode0': <type 'numpy.unicode_'>, 'L': <type 'numpy.uint64'>, 'P': <type 'numpy.uint64'>, 'half': <type 'numpy.float16'>, 'void0': <type 'numpy.void'>, 'd': <type 'numpy.float64'>, 't8': <type 'numpy.timedelta64'>, 'h': <type 'numpy.int16'>, 'l': <type 'numpy.int64'>, 'p': <type 'numpy.int64'>, 'c32': <type 'numpy.complex256'>, 22: <type 'numpy.timedelta64'>, 'M8[us]': <type 'numpy.datetime64'>, 'O8': <type 'numpy.object_'>, 'Timedelta64': <type 'numpy.timedelta64'>, 'object0': <type 'numpy.object_'>, 'b1': <type 'numpy.bool_'>, 'float128': <type 'numpy.float128'>, 'String0': <type 'numpy.string_'>, 'float16': <type 'numpy.float16'>, 'ulonglong': <type 'numpy.uint64'>, 'm8[us]': <type 'numpy.timedelta64'>, 'i1': <type 'numpy.int8'>, 'uint32': <type 'numpy.uint32'>, '?': <type 'numpy.bool_'>, 'Void0': <type 'numpy.void'>, 'complex64': <type 'numpy.complex64'>, 'G': <type 'numpy.complex256'>, 'O': <type 'numpy.object_'>, 'UInt8': <type 'numpy.uint8'>, 'S': <type 'numpy.string_'>, 'byte': <type 'numpy.int8'>, 'UInt64': <type 'numpy.uint64'>, 'g': <type 'numpy.float128'>, 'float64': <type 'numpy.float64'>, 'ushort': <type 'numpy.uint16'>, 'float_': <type 'numpy.float64'>, 'uint': <type 'numpy.uint64'>, 'object_': <type 'numpy.object_'>, 'Float16': <type 'numpy.float16'>, 'complex_': <type 'numpy.complex128'>, 'Unicode0': <type 'numpy.unicode_'>, 'uintp': <type 'numpy.uint64'>, 'intc': <type 'numpy.int32'>, 'csingle': <type 'numpy.complex64'>, 'datetime64': <type 'numpy.datetime64'>, 'float': <type 'numpy.float64'>, 'bool8': <type 'numpy.bool_'>, 'Bool': <type 'numpy.bool_'>, 'intp': <type 'numpy.int64'>, 'uintc': <type 'numpy.uint32'>, 'bytes_': <type 'numpy.string_'>, 'u8': <type 'numpy.uint64'>, 'u4': <type 'numpy.uint32'>, 'int_': <type 'numpy.int64'>, 'cdouble': <type 'numpy.complex128'>, 'u1': <type 'numpy.uint8'>, 'complex128': <type 'numpy.complex128'>, 'u2': <type 'numpy.uint16'>, 'f8': <type 'numpy.float64'>, 'Datetime64': <type 'numpy.datetime64'>, 'ubyte': <type 'numpy.uint8'>, 'Int8': <type 'numpy.int8'>, 'B': <type 'numpy.uint8'>, 'uint0': <type 'numpy.uint64'>, 'F': <type 'numpy.complex64'>, 'bool_': <type 'numpy.bool_'>, 'uint8': <type 'numpy.uint8'>, 'c8': <type 'numpy.complex64'>, 'Int64': <type 'numpy.int64'>, 'int0': <type 'numpy.int64'>, 'Complex32': <type 'numpy.complex64'>, 'V': <type 'numpy.void'>, 'int8': <type 'numpy.int8'>, 'uint64': <type 'numpy.uint64'>, 'b': <type 'numpy.int8'>, 'f': <type 'numpy.float32'>, 'double': <type 'numpy.float64'>, 'UInt32': <type 'numpy.uint32'>, 'clongdouble': <type 'numpy.complex256'>, 'str': <type 'numpy.string_'>, 'timedelta_': <type 'numpy.timedelta64'>, 'f16': <type 'numpy.float128'>, 'f2': <type 'numpy.float16'>, 'datetime_': <type 'numpy.datetime64'>, 'f4': <type 'numpy.float32'>, 'int32': <type 'numpy.int32'>, 'int': <type 'numpy.int64'>, 'longdouble': <type 'numpy.float128'>, 'Complex128': <type 'numpy.complex256'>, 'single': <type 'numpy.float32'>, 'string': <type 'numpy.string_'>, 'q': <type 'numpy.int64'>, 'Int16': <type 'numpy.int16'>, 'Float64': <type 'numpy.float64'>, 'longcomplex': <type 'numpy.complex256'>, 'UInt16': <type 'numpy.uint16'>, 'bool': <type 'numpy.bool_'>, 'Float32': <type 'numpy.float32'>, 'd8': <type 'numpy.datetime64'>, 'string0': <type 'numpy.string_'>, 'longlong': <type 'numpy.int64'>, 'i8': <type 'numpy.int64'>, 'int16': <type 'numpy.int16'>, 'str_': <type 'numpy.string_'>, 'I': <type 'numpy.uint32'>, 'object': <type 'numpy.object_'>, 'M': <type 'numpy.datetime64'>, 'i4': <type 'numpy.int32'>, 'singlecomplex': <type 'numpy.complex64'>, 'Q': <type 'numpy.uint64'>, 'string_': <type 'numpy.string_'>, 'U': <type 'numpy.unicode_'>, 'a': <type 'numpy.string_'>, 'short': <type 'numpy.int16'>, 'e': <type 'numpy.float16'>, 'i': <type 'numpy.int32'>, 'clongfloat': <type 'numpy.complex256'>, 'm': <type 'numpy.timedelta64'>, 'Object0': <type 'numpy.object_'>, 'int64': <type 'numpy.int64'>, 'Float128': <type 'numpy.float128'>, 'i2': <type 'numpy.int16'>}, 'xticks': <function xticks at 0x33480c8>, 'hist': <function hist at 0x3349488>, 'timeinteger': <type 'numpy.timeinteger'>, 'NINF': -inf, 'min_scalar_type': <built-in function min_scalar_type>, 'geometric': <built-in method geometric of mtrand.RandomState object at 0x7f1382d162d0>, 'sort_complex': <function sort_complex at 0x250ae60>, 'nested_iters': <built-in function nested_iters>, 'concatenate': <built-in function concatenate>, 'ERR_DEFAULT2': 521, 'vdot': <built-in function vdot>, 'bincount': <built-in function bincount>, 'num2epoch': <function num2epoch at 0x2ead5f0>, 'sctypes': {'int': [<type 'numpy.int8'>, <type 'numpy.int16'>, <type 'numpy.int32'>, <type 'numpy.int64'>], 'float': [<type 'numpy.float16'>, <type 'numpy.float32'>, <type 'numpy.float64'>, <type 'numpy.float128'>], 'uint': [<type 'numpy.uint8'>, <type 'numpy.uint16'>, <type 'numpy.uint32'>, <type 'numpy.uint64'>], 'complex': [<type 'numpy.complex64'>, <type 'numpy.complex128'>, <type 'numpy.complex256'>], 'others': [<type 'bool'>, <type 'object'>, <type 'str'>, <type 'unicode'>, <type 'numpy.void'>]}, 'transpose': <function transpose at 0x24409b0>, 'add_newdocs': <module 'numpy.add_newdocs' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/add_newdocs.pyc'>, 'detrend_linear': <function detrend_linear at 0x2bc9de8>, 'corrcoef': <function corrcoef at 0x25076e0>, 'fromregex': <function fromregex at 0x2592c08>, 'vector_lengths': <function vector_lengths at 0x2bd12a8>, 'vectorize': <class 'numpy.lib.function_base.vectorize'>, 'set_printoptions': <function set_printoptions at 0x244bc08>, 'trim_zeros': <function trim_zeros at 0x250aed8>, 'WEEKLY': 2, 'cos': <ufunc 'cos'>, 'vlines': <function vlines at 0x3349ed8>, 'detrend': <function detrend at 0x2bc9c08>, 'arccosh': <ufunc 'arccosh'>, 'DateFormatter': <class matplotlib.dates.DateFormatter at 0x2e5d9a8>, 'equal': <ufunc 'equal'>, 'display': <function display at 0x337ee60>, 'cumprod': <function cumprod at 0x244b758>, 'LinAlgError': <class 'numpy.linalg.linalg.LinAlgError'>, 'float_': <type 'numpy.float64'>, 'deprecate': <function deprecate at 0x24fc938>, 'vander': <function vander at 0x24fc0c8>, 'geterrobj': <built-in function geterrobj>, 'interactive': <function interactive at 0x271f6e0>, 'clf': <function clf at 0x33470c8>, 'prepca': <function prepca at 0x2bce758>, 'wald': <built-in method wald of mtrand.RandomState object at 0x7f1382d162d0>, 'fromiter': <built-in function fromiter>, 'prctile_rank': <function prctile_rank at 0x2bcea28>, 'cm': <module 'matplotlib.cm' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/cm.pyc'>, 'tril': <function tril at 0x24e8f50>, 'poly': <function poly at 0x2567398>, 'loglog': <function loglog at 0x33495f0>, 'bitwise_or': <ufunc 'bitwise_or'>, 'figtext': <function figtext at 0x3347398>, 'norm_flat': <function norm_flat at 0x2bcf668>, '_i3': u'from sklearn.ensemble import RandomForestClassifier', 'tricontourf': <function tricontourf at 0x3349d70>, 'diff': <function diff at 0x250ac80>, 'cohere': <function cohere at 0x3348f50>, 'normpdf': <function normpdf at 0x2bce500>, 'AutoLocator': <class matplotlib.ticker.AutoLocator at 0x2b2c3f8>, 'Rectangle': <class 'matplotlib.patches.Rectangle'>, 'quit': <IPython.core.autocall.ExitAutocall object at 0x2006c50>, 'get_include': <function get_include at 0x24fc7d0>, 'pv': <function pv at 0x2593500>, 'tensordot': <function tensordot at 0x23eae60>, 'piecewise': <function piecewise at 0x250aaa0>, 'rfftn': <function rfftn at 0x259d398>, 'invert': <ufunc 'invert'>, 'UFUNC_PYVALS_NAME': 'UFUNC_PYVALS', 'fftpack_lite': <module 'numpy.fft.fftpack_lite' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/fft/fftpack_lite.so'>, 'sinc': <function sinc at 0x2507b90>, 'SHIFT_INVALID': 9, 'ubyte': <type 'numpy.uint8'>, 'axis': <function axis at 0x3347cf8>, 'matrix_rank': <function matrix_rank at 0x2576320>, 'degrees': <ufunc 'degrees'>, 'pi': 3.141592653589793, 'numpy': <module 'numpy' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/__init__.pyc'>, '__doc__': 'Automatically created module for IPython interactive environment', 'empty': <built-in function empty>, 'find_common_type': <function find_common_type at 0x23ea230>, 'random_sample': <built-in method random_sample of mtrand.RandomState object at 0x7f1382d162d0>, 'longest_ones': <function longest_ones at 0x2bce6e0>, 'irfft2': <function irfft2 at 0x259d500>, 'arcsin': <ufunc 'arcsin'>, 'sctypeNA': {<type 'numpy.unicode_'>: 'Unicode0', 'd8': 'Datetime64', 'Int32': <type 'numpy.int32'>, 'Complex64': <type 'numpy.complex128'>, <type 'numpy.void'>: 'Void0', <type 'numpy.int8'>: 'Int8', 'c16': 'Complex64', 'D': 'Complex64', 'H': 'UInt16', 'L': 'UInt64', <type 'numpy.int16'>: 'Int16', <type 'numpy.datetime64'>: 'Datetime64', 'd': 'Float64', 't8': 'Timedelta64', 'h': 'Int16', 'l': 'Int64', <type 'numpy.int32'>: 'Int32', <type 'numpy.timedelta64'>: 'Timedelta64', 'c32': 'Complex128', <type 'numpy.int64'>: 'Int64', 'Timedelta64': <type 'numpy.timedelta64'>, <type 'numpy.float16'>: 'Float16', 'b1': 'Bool', 'String0': <type 'numpy.string_'>, <type 'numpy.int64'>: 'Int64', 'I': 'UInt32', <type 'numpy.uint8'>: 'UInt8', '?': 'Bool', 'Void0': <type 'numpy.void'>, 'G': 'Complex128', 'O': 'Object0', 'UInt8': <type 'numpy.uint8'>, 'S': 'String0', <type 'numpy.uint16'>: 'UInt16', 'UInt64': <type 'numpy.uint64'>, 'g': 'Float128', <type 'numpy.uint32'>: 'UInt32', 'Float16': <type 'numpy.float16'>, <type 'numpy.uint64'>: 'UInt64', 'Bool': <type 'numpy.bool_'>, <type 'numpy.bool_'>: 'Bool', <type 'numpy.uint64'>: 'UInt64', 'u8': <type 'numpy.uint64'>, 'u4': <type 'numpy.uint32'>, 'Unicode0': <type 'numpy.unicode_'>, 'u1': <type 'numpy.uint8'>, 'u2': <type 'numpy.uint16'>, 'Datetime64': <type 'numpy.datetime64'>, 'Int8': <type 'numpy.int8'>, <type 'numpy.float32'>: 'Float32', 'B': 'UInt8', 'F': 'Complex32', 'c8': 'Complex32', 'Int64': <type 'numpy.int64'>, 'Complex32': <type 'numpy.complex64'>, 'V': 'Void0', <type 'numpy.float64'>: 'Float64', 'b': 'Int8', 'f': 'Float32', 'UInt32': <type 'numpy.uint32'>, <type 'numpy.float128'>: 'Float128', 'f16': 'Float128', 'f2': 'Float16', 'f4': 'Float32', 'f8': 'Float64', <type 'numpy.complex64'>: 'Complex32', 'Complex128': <type 'numpy.complex256'>, 'Object0': <type 'numpy.object_'>, 'Int16': <type 'numpy.int16'>, <type 'numpy.complex128'>: 'Complex64', 'Float64': <type 'numpy.float64'>, 'UInt16': <type 'numpy.uint16'>, 'Float32': <type 'numpy.float32'>, <type 'numpy.complex256'>: 'Complex128', 'i8': <type 'numpy.int64'>, 'i1': <type 'numpy.int8'>, 'i2': <type 'numpy.int16'>, 'M': 'Datetime64', 'i4': <type 'numpy.int32'>, 'Q': 'UInt64', 'U': 'Unicode0', <type 'numpy.object_'>: 'Object0', 'e': 'Float16', 'i': 'Int32', 'm': 'Timedelta64', 'q': 'Int64', <type 'numpy.string_'>: 'String0', 'Float128': <type 'numpy.float128'>}, 'imag': <function imag at 0x24e7c80>, 'sctype2char': <function sctype2char at 0x23e9500>, 'singlecomplex': <type 'numpy.complex64'>, 'SHIFT_DIVIDEBYZERO': 0, 'sort': <function sort at 0x2440a28>, 'standard_t': <built-in method standard_t of mtrand.RandomState object at 0x7f1382d162d0>, 'csv2rec': <function csv2rec at 0x2bcfe60>, 'MachAr': <class 'numpy.core.machar.MachAr'>, 'apply_along_axis': <function apply_along_axis at 0x2512230>, 'new_figure_manager': <function new_figure_manager at 0x308c230>, 'tight_layout': <function tight_layout at 0x3347b90>, 'array_repr': <function array_repr at 0x2440488>, 'reciprocal': <ufunc 'reciprocal'>, 'frompyfunc': <built-in function frompyfunc>, 'rot90': <function rot90 at 0x24e8cf8>, 'dstack': <function dstack at 0x2512410>, 'float64': <type 'numpy.float64'>, 'Annotation': <class 'matplotlib.text.Annotation'>, 'colorbar': <function colorbar at 0x3348578>, 'cast': {<type 'numpy.int64'>: <function <lambda> at 0x23e9578>, <type 'numpy.uint64'>: <function <lambda> at 0x23e95f0>, <type 'numpy.complex64'>: <function <lambda> at 0x23e9668>, <type 'numpy.unicode_'>: <function <lambda> at 0x23e96e0>, <type 'numpy.float16'>: <function <lambda> at 0x23e9758>, <type 'numpy.bool_'>: <function <lambda> at 0x23e97d0>, <type 'numpy.int64'>: <function <lambda> at 0x23e9848>, <type 'numpy.uint64'>: <function <lambda> at 0x23e98c0>, <type 'numpy.complex128'>: <function <lambda> at 0x23e9938>, <type 'numpy.void'>: <function <lambda> at 0x23e99b0>, <type 'numpy.int8'>: <function <lambda> at 0x23e9a28>, <type 'numpy.uint8'>: <function <lambda> at 0x23e9aa0>, <type 'numpy.float32'>: <function <lambda> at 0x23e9b18>, <type 'numpy.complex256'>: <function <lambda> at 0x23e9b90>, <type 'numpy.int16'>: <function <lambda> at 0x23e9c08>, <type 'numpy.uint16'>: <function <lambda> at 0x23e9c80>, <type 'numpy.float64'>: <function <lambda> at 0x23e9cf8>, <type 'numpy.object_'>: <function <lambda> at 0x23e9d70>, <type 'numpy.datetime64'>: <function <lambda> at 0x23e9de8>, <type 'numpy.int32'>: <function <lambda> at 0x23e9e60>, <type 'numpy.uint32'>: <function <lambda> at 0x23e9ed8>, <type 'numpy.float128'>: <function <lambda> at 0x23e9f50>, <type 'numpy.string_'>: <function <lambda> at 0x23ea050>, <type 'numpy.timedelta64'>: <function <lambda> at 0x23ea0c8>}, 'gumbel': <built-in method gumbel of mtrand.RandomState object at 0x7f1382d162d0>, 'rfft2': <function rfft2 at 0x259d410>, 'eig': <function eig at 0x2576140>, 'packbits': <built-in function packbits>, 'issctype': <function issctype at 0x23e91b8>, 'mgrid': <numpy.lib.index_tricks.nd_grid object at 0x250e8d0>, 'vonmises': <built-in method vonmises of mtrand.RandomState object at 0x7f1382d162d0>, 'ushort': <type 'numpy.uint16'>, 'Polygon': <class 'matplotlib.patches.Polygon'>, 'helper': <module 'numpy.fft.helper' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/fft/helper.pyc'>, 'empty_like': <built-in function empty_like>, 'longdouble': <type 'numpy.float128'>, 'signbit': <ufunc 'signbit'>, 'cond': <function cond at 0x25762a8>, 'chisquare': <built-in method chisquare of mtrand.RandomState object at 0x7f1382d162d0>, 'conj': <ufunc 'conjugate'>, 'asmatrix': <function asmatrix at 0x250c320>, 'floating': <type 'numpy.floating'>, 'flatiter': <type 'numpy.flatiter'>, 'bitwise_xor': <ufunc 'bitwise_xor'>, 'WeekdayLocator': <class matplotlib.dates.WeekdayLocator at 0x2eae050>, 'fabs': <ufunc 'fabs'>, 'Locator': <class matplotlib.ticker.Locator at 0x2adff58>, 'generic': <type 'numpy.generic'>, 'reshape': <function reshape at 0x2440758>, 'NaN': nan, 'cross': <function cross at 0x24400c8>, 'sqrt': <ufunc 'sqrt'>, 'show_config': <function show at 0x22bbaa0>, 'longcomplex': <type 'numpy.complex256'>, 'poly_between': <function poly_between at 0x2bd1050>, 'recfromcsv': <function recfromcsv at 0x2592e60>, 'split': <function split at 0x2512578>, 'evaluate': <module 'ray.evaluate' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/evaluate.pyc'>, 'getp': <function getp at 0x28ad8c0>, 'floor_divide': <ufunc 'floor_divide'>, '__version__': '1.6.2', 'format_parser': <class numpy.core.records.format_parser at 0x2455668>, 'nextafter': <ufunc 'nextafter'>, 'exponential': <built-in method exponential of mtrand.RandomState object at 0x7f1382d162d0>, 'dedent': <function dedent at 0x2710848>, 'polyval': <function polyval at 0x25768c0>, 'infty': inf, 'flipud': <function flipud at 0x24e8c80>, 'i0': <function i0 at 0x2507aa0>, 'permutation': <built-in method permutation of mtrand.RandomState object at 0x7f1382d162d0>, 'morpho': <module 'ray.morpho' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/morpho.pyc'>, 'disconnect': <function disconnect at 0x3347050>, 'iscomplexobj': <function iscomplexobj at 0x24e7de8>, 'sys': <module 'sys' (built-in)>, 'ion': <function ion at 0x32ea938>, 'setdiff1d': <function setdiff1d at 0x250a7d0>, 'psd': <function psd at 0x33498c0>, 'mafromtxt': <function mafromtxt at 0x2592d70>, 'bartlett': <function bartlett at 0x25077d0>, 'polydiv': <function polydiv at 0x2576aa0>, 'drange': <function drange at 0x2eab050>, 'safe_eval': <function safe_eval at 0x250a050>, 'ifft': <function ifft at 0x2593de8>, 'cov': <function cov at 0x2507578>, 'greater_equal': <ufunc 'greater_equal'>, 'Tester': <class 'numpy.testing.nosetester.NoseTester'>, 'trapz': <function trapz at 0x2507de8>, 'PINF': inf, 'rec_drop_fields': <function rec_drop_fields at 0x2bcfb90>, 'recfromtxt': <function recfromtxt at 0x2592de8>, 'setp': <function setp at 0x32eac80>, 'In': ['', u'import sys', u"sys.path.insert(0, '/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/')", u'from sklearn.ensemble import RandomForestClassifier', u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=16, shared=True, compute_importances=True)', u'from ray import *', u"dat5 = classify.load_training_data_from_disk('training/multi-channel-graph-e05-5.trdat.h5')", u'rf = rf.fit(dat5[0], dat5[1][:, 0])', u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=2, shared=True, compute_importances=True)', u'rf = rf.fit(dat5[0], dat5[1][:, 0])'], 'grid': <function grid at 0x334a140>, 'standard_normal': <built-in method standard_normal of mtrand.RandomState object at 0x7f1382d162d0>, 'RankWarning': <class 'numpy.lib.polynomial.RankWarning'>, 'ascontiguousarray': <function ascontiguousarray at 0x23ea9b0>, 'load': <function load at 0x2592398>, '_i4': u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=16, shared=True, compute_importances=True)', 'hexbin': <function hexbin at 0x3349410>, 'Arrow': <class 'matplotlib.patches.Arrow'>, 'less': <ufunc 'less'>, 'putmask': <built-in function putmask>, 'UFUNC_BUFSIZE_DEFAULT': 8192, 'get_state': <built-in method get_state of mtrand.RandomState object at 0x7f1382d162d0>, 'NAN': nan, 'typeDict': {0: <type 'numpy.bool_'>, 1: <type 'numpy.int8'>, 2: <type 'numpy.uint8'>, 3: <type 'numpy.int16'>, 4: <type 'numpy.uint16'>, 5: <type 'numpy.int32'>, 6: <type 'numpy.uint32'>, 7: <type 'numpy.int64'>, 8: <type 'numpy.uint64'>, 9: <type 'numpy.int64'>, 10: <type 'numpy.uint64'>, 11: <type 'numpy.float32'>, 12: <type 'numpy.float64'>, 13: <type 'numpy.float128'>, 14: <type 'numpy.complex64'>, 15: <type 'numpy.complex128'>, 16: <type 'numpy.complex256'>, 17: <type 'numpy.object_'>, 18: <type 'numpy.string_'>, 19: <type 'numpy.unicode_'>, 20: <type 'numpy.void'>, 21: <type 'numpy.datetime64'>, 'unicode': <type 'numpy.unicode_'>, 23: <type 'numpy.float16'>, 'cfloat': <type 'numpy.complex128'>, 'longfloat': <type 'numpy.float128'>, 'Int32': <type 'numpy.int32'>, 'Complex64': <type 'numpy.complex128'>, 'unicode_': <type 'numpy.unicode_'>, 'complex': <type 'numpy.complex128'>, 'timedelta64': <type 'numpy.timedelta64'>, 'uint16': <type 'numpy.uint16'>, 'c16': <type 'numpy.complex128'>, 'float32': <type 'numpy.float32'>, 'complex256': <type 'numpy.complex256'>, 'D': <type 'numpy.complex128'>, 'H': <type 'numpy.uint16'>, 'void': <type 'numpy.void'>, 'unicode0': <type 'numpy.unicode_'>, 'L': <type 'numpy.uint64'>, 'P': <type 'numpy.uint64'>, 'half': <type 'numpy.float16'>, 'void0': <type 'numpy.void'>, 'd': <type 'numpy.float64'>, 't8': <type 'numpy.timedelta64'>, 'h': <type 'numpy.int16'>, 'l': <type 'numpy.int64'>, 'p': <type 'numpy.int64'>, 'c32': <type 'numpy.complex256'>, 22: <type 'numpy.timedelta64'>, 'M8[us]': <type 'numpy.datetime64'>, 'O8': <type 'numpy.object_'>, 'Timedelta64': <type 'numpy.timedelta64'>, 'object0': <type 'numpy.object_'>, 'b1': <type 'numpy.bool_'>, 'float128': <type 'numpy.float128'>, 'String0': <type 'numpy.string_'>, 'float16': <type 'numpy.float16'>, 'ulonglong': <type 'numpy.uint64'>, 'm8[us]': <type 'numpy.timedelta64'>, 'i1': <type 'numpy.int8'>, 'uint32': <type 'numpy.uint32'>, '?': <type 'numpy.bool_'>, 'Void0': <type 'numpy.void'>, 'complex64': <type 'numpy.complex64'>, 'G': <type 'numpy.complex256'>, 'O': <type 'numpy.object_'>, 'UInt8': <type 'numpy.uint8'>, 'S': <type 'numpy.string_'>, 'byte': <type 'numpy.int8'>, 'UInt64': <type 'numpy.uint64'>, 'g': <type 'numpy.float128'>, 'float64': <type 'numpy.float64'>, 'ushort': <type 'numpy.uint16'>, 'float_': <type 'numpy.float64'>, 'uint': <type 'numpy.uint64'>, 'object_': <type 'numpy.object_'>, 'Float16': <type 'numpy.float16'>, 'complex_': <type 'numpy.complex128'>, 'Unicode0': <type 'numpy.unicode_'>, 'uintp': <type 'numpy.uint64'>, 'intc': <type 'numpy.int32'>, 'csingle': <type 'numpy.complex64'>, 'datetime64': <type 'numpy.datetime64'>, 'float': <type 'numpy.float64'>, 'bool8': <type 'numpy.bool_'>, 'Bool': <type 'numpy.bool_'>, 'intp': <type 'numpy.int64'>, 'uintc': <type 'numpy.uint32'>, 'bytes_': <type 'numpy.string_'>, 'u8': <type 'numpy.uint64'>, 'u4': <type 'numpy.uint32'>, 'int_': <type 'numpy.int64'>, 'cdouble': <type 'numpy.complex128'>, 'u1': <type 'numpy.uint8'>, 'complex128': <type 'numpy.complex128'>, 'u2': <type 'numpy.uint16'>, 'f8': <type 'numpy.float64'>, 'Datetime64': <type 'numpy.datetime64'>, 'ubyte': <type 'numpy.uint8'>, 'Int8': <type 'numpy.int8'>, 'B': <type 'numpy.uint8'>, 'uint0': <type 'numpy.uint64'>, 'F': <type 'numpy.complex64'>, 'bool_': <type 'numpy.bool_'>, 'uint8': <type 'numpy.uint8'>, 'c8': <type 'numpy.complex64'>, 'Int64': <type 'numpy.int64'>, 'int0': <type 'numpy.int64'>, 'Complex32': <type 'numpy.complex64'>, 'V': <type 'numpy.void'>, 'int8': <type 'numpy.int8'>, 'uint64': <type 'numpy.uint64'>, 'b': <type 'numpy.int8'>, 'f': <type 'numpy.float32'>, 'double': <type 'numpy.float64'>, 'UInt32': <type 'numpy.uint32'>, 'clongdouble': <type 'numpy.complex256'>, 'str': <type 'numpy.string_'>, 'timedelta_': <type 'numpy.timedelta64'>, 'f16': <type 'numpy.float128'>, 'f2': <type 'numpy.float16'>, 'datetime_': <type 'numpy.datetime64'>, 'f4': <type 'numpy.float32'>, 'int32': <type 'numpy.int32'>, 'int': <type 'numpy.int64'>, 'longdouble': <type 'numpy.float128'>, 'Complex128': <type 'numpy.complex256'>, 'single': <type 'numpy.float32'>, 'string': <type 'numpy.string_'>, 'q': <type 'numpy.int64'>, 'Int16': <type 'numpy.int16'>, 'Float64': <type 'numpy.float64'>, 'longcomplex': <type 'numpy.complex256'>, 'UInt16': <type 'numpy.uint16'>, 'bool': <type 'numpy.bool_'>, 'Float32': <type 'numpy.float32'>, 'd8': <type 'numpy.datetime64'>, 'string0': <type 'numpy.string_'>, 'longlong': <type 'numpy.int64'>, 'i8': <type 'numpy.int64'>, 'int16': <type 'numpy.int16'>, 'str_': <type 'numpy.string_'>, 'I': <type 'numpy.uint32'>, 'object': <type 'numpy.object_'>, 'M': <type 'numpy.datetime64'>, 'i4': <type 'numpy.int32'>, 'singlecomplex': <type 'numpy.complex64'>, 'Q': <type 'numpy.uint64'>, 'string_': <type 'numpy.string_'>, 'U': <type 'numpy.unicode_'>, 'a': <type 'numpy.string_'>, 'short': <type 'numpy.int16'>, 'e': <type 'numpy.float16'>, 'i': <type 'numpy.int32'>, 'clongfloat': <type 'numpy.complex256'>, 'm': <type 'numpy.timedelta64'>, 'Object0': <type 'numpy.object_'>, 'int64': <type 'numpy.int64'>, 'Float128': <type 'numpy.float128'>, 'i2': <type 'numpy.int16'>}, 'shape': <function shape at 0x2440f50>, 'setbufsize': <function setbufsize at 0x244cd70>, 'cfloat': <type 'numpy.complex128'>, 'RAISE': 2, 'autogen_docstring': <function autogen_docstring at 0x3348938>, 'detrend_mean': <function detrend_mean at 0x2bc9cf8>, 'isscalar': <function isscalar at 0x244c7d0>, 'SubplotTool': <class 'matplotlib.widgets.SubplotTool'>, 'get_current_fig_manager': <function get_current_fig_manager at 0x32eae60>, 'character': <type 'numpy.character'>, 'bench': <bound method NoseTester.test of <numpy.testing.nosetester.NoseTester object at 0x256ea10>>, 'source': <function source at 0x24fcde8>, 'add': <ufunc 'add'>, 'uint16': <type 'numpy.uint16'>, 'ndenumerate': <class 'numpy.lib.index_tricks.ndenumerate'>, 'hlines': <function hlines at 0x3349500>, 'ufunc': <type 'numpy.ufunc'>, 'save': <function save at 0x25928c0>, 'multinomial': <built-in method multinomial of mtrand.RandomState object at 0x7f1382d162d0>, 'ravel': <function ravel at 0x2440e60>, 'float32': <type 'numpy.float32'>, 'real': <function real at 0x24e7c08>, 'int32': <type 'numpy.int32'>, 'path_length': <function path_length at 0x2bd1398>, 'tril_indices': <function tril_indices at 0x24fc230>, 'around': <function around at 0x244b938>, 'cbook': <module 'matplotlib.cbook' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/cbook.pyc'>, 'lexsort': <built-in function lexsort>, 'get_scale_names': <function get_scale_names at 0x2b2f488>, 'complex_': <type 'numpy.complex128'>, 'ComplexWarning': <class 'numpy.core.numeric.ComplexWarning'>, 'datestr2num': <function datestr2num at 0x2ea7c80>, 'np': <module 'numpy' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/__init__.pyc'>, 'unicode0': <type 'numpy.unicode_'>, 'ipmt': <function ipmt at 0x2593410>, 'issubclass_': <function issubclass_ at 0x23e92a8>, 'atleast_3d': <function atleast_3d at 0x2472320>, 'isneginf': <function isneginf at 0x24e7b18>, 'average': <function average at 0x250a9b0>, 'integer': <type 'numpy.integer'>, 'unique': <function unique at 0x250a578>, 'mod': <ufunc 'remainder'>, '_sh': <module 'IPython.core.shadowns' from '/usr/lib/python2.7/site-packages/ipython-0.12.1-py2.7.egg/IPython/core/shadowns.pyc'>, 'bitwise_not': <ufunc 'invert'>, 'plot_date': <function plot_date at 0x3349848>, 'laplace': <built-in method laplace of mtrand.RandomState object at 0x7f1382d162d0>, 'getbufsize': <function getbufsize at 0x244cde8>, 'isfortran': <function isfortran at 0x23eab18>, 'get_printoptions': <function get_printoptions at 0x244bc80>, 'asarray_chkfinite': <function asarray_chkfinite at 0x250aa28>, 'rcParams': {'axes.formatter.use_locale': False, 'figure.subplot.right': 0.9, 'mathtext.cal': 'cursive', 'font.fantasy': ['Comic Sans MS', 'Chicago', 'Charcoal', 'ImpactWestern', 'fantasy'], 'xtick.minor.pad': 4, 'tk.pythoninspect': False, 'image.aspect': 'equal', 'font.cursive': ['Apple Chancery', 'Textile', 'Zapf Chancery', 'Sand', 'cursive'], 'figure.subplot.hspace': 0.2, 'keymap.fullscreen': 'f', 'examples.directory': '', 'xtick.direction': 'in', 'axes.facecolor': 'w', 'mathtext.fontset': 'cm', 'ytick.direction': 'in', 'keymap.pan': 'p', 'path.snap': True, 'axes.axisbelow': False, 'lines.markersize': 6, 'figure.dpi': 80, 'text.usetex': False, 'image.origin': 'upper', 'patch.edgecolor': 'k', 'legend.labelspacing': 0.5, 'ps.useafm': False, 'mathtext.bf': 'serif:bold', 'lines.solid_joinstyle': 'round', 'font.monospace': ['Bitstream Vera Sans Mono', 'DejaVu Sans Mono', 'Andale Mono', 'Nimbus Mono L', 'Courier New', 'Courier', 'Fixed', 'Terminal', 'monospace'], 'xtick.minor.size': 2, 'axes.formatter.limits': [-7, 7], 'figure.subplot.wspace': 0.2, 'savefig.edgecolor': 'w', 'image.cmap': 'jet', 'lines.marker': 'None', 'tk.window_focus': False, 'backend.qt4': 'PyQt4', 'font.serif': ['Bitstream Vera Serif', 'DejaVu Serif', 'New Century Schoolbook', 'Century Schoolbook L', 'Utopia', 'ITC Bookman', 'Bookman', 'Nimbus Roman No9 L', 'Times New Roman', 'Times', 'Palatino', 'Charter', 'serif'], 'savefig.facecolor': 'w', 'ytick.minor.size': 2, 'font.stretch': 'normal', 'text.dvipnghack': None, 'ytick.color': 'k', 'svg.fonttype': 'path', 'lines.linestyle': '-', 'xtick.color': 'k', 'xtick.major.pad': 4, 'patch.facecolor': 'b', 'figure.figsize': [8.0, 6.0], 'axes.linewidth': 1.0, 'keymap.zoom': 'o', 'legend.handletextpad': 0.8, 'mathtext.fallback_to_cm': True, 'lines.linewidth': 1.0, 'savefig.dpi': 100, 'verbose.fileo': 'sys.stdout', 'svg.image_noscale': False, 'docstring.hardcopy': False, 'font.size': 12, 'ps.fonttype': 3, 'path.simplify': True, 'keymap.all_axes': 'a', 'polaraxes.grid': True, 'text.hinting': True, 'pdf.compression': 6, 'grid.linewidth': 0.5, 'legend.frameon': True, 'figure.autolayout': False, 'figure.facecolor': '0.75', 'ps.usedistiller': False, 'legend.isaxes': True, 'figure.edgecolor': 'w', 'mathtext.tt': 'monospace', 'contour.negative_linestyle': 'dashed', 'image.interpolation': 'bilinear', 'lines.markeredgewidth': 0.5, 'keymap.home': ['h', 'r', 'home'], 'axes3d.grid': True, 'axes.edgecolor': 'k', 'legend.shadow': False, 'axes.titlesize': 'large', 'backend': 'Qt4Agg', 'xtick.major.size': 4, 'keymap.xscale': ['k', 'L'], 'legend.fontsize': 'large', 'lines.solid_capstyle': 'projecting', 'mathtext.it': 'serif:italic', 'keymap.save': 's', 'font.variant': 'normal', 'toolbar': 'toolbar2', 'xtick.labelsize': 'medium', 'axes.unicode_minus': True, 'ps.distiller.res': 6000, 'axes.labelweight': 'normal', 'pdf.fonttype': 3, 'patch.linewidth': 1.0, 'pdf.inheritcolor': False, 'axes.color_cycle': ['b', 'g', 'r', 'c', 'm', 'y', 'k'], 'lines.dash_capstyle': 'butt', 'lines.color': 'b', 'figure.subplot.top': 0.9, 'pdf.use14corefonts': False, 'legend.markerscale': 1.0, 'patch.antialiased': True, 'font.style': 'normal', 'keymap.forward': ['right', 'v'], 'backend_fallback': True, 'legend.fancybox': False, 'grid.linestyle': ':', 'savefig.extension': 'auto', 'text.color': 'k', 'mathtext.rm': 'serif', 'legend.loc': 'upper right', 'interactive': True, 'cairo.format': 'png', 'savefig.orientation': 'portrait', 'svg.image_inline': True, 'ytick.major.size': 4, 'axes.grid': False, 'plugins.directory': '.matplotlib_plugins', 'grid.color': 'k', 'timezone': 'UTC', 'ytick.major.pad': 4, 'legend.borderpad': 0.4, 'examples.download': True, 'lines.dash_joinstyle': 'round', 'datapath': '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/mpl-data', 'lines.antialiased': True, 'text.latex.unicode': False, 'legend.handleheight': 0.7, 'image.lut': 256, 'figure.subplot.bottom': 0.1, 'text.latex.preamble': [''], 'legend.numpoints': 2, 'legend.handlelength': 2.0, 'keymap.grid': 'g', 'font.sans-serif': ['Bitstream Vera Sans', 'DejaVu Sans', 'Lucida Grande', 'Verdana', 'Geneva', 'Lucid', 'Arial', 'Helvetica', 'Avant Garde', 'sans-serif'], 'axes.labelcolor': 'k', 'font.family': 'sans-serif', 'axes.labelsize': 'medium', 'ytick.minor.pad': 4, 'legend.borderaxespad': 0.5, 'mathtext.sf': 'sans\\-serif', 'axes.hold': True, 'verbose.level': 'silent', 'mathtext.default': 'it', 'figure.subplot.left': 0.125, 'legend.columnspacing': 2.0, 'text.latex.preview': False, 'font.weight': 'normal', 'keymap.yscale': 'l', 'image.resample': False, 'agg.path.chunksize': 0, 'path.simplify_threshold': 0.1111111111111111, 'ytick.labelsize': 'medium', 'ps.papersize': 'letter', 'svg.embed_char_paths': True, 'keymap.back': ['left', 'c', 'backspace']}, 'pcolormesh': <function pcolormesh at 0x33496e0>, 'barh': <function barh at 0x3348de8>, 'sign': <ufunc 'sign'>, '_dh': [u'/groups/chklovskii/home/nuneziglesiasj/data/cropped_5um3_larva_fib_10x10x10nm/cl2'], 'svd': <function svd at 0x2576230>, 'findobj': <function findobj at 0x32ea320>, 'spring': <function spring at 0x334aaa0>, 'in1d': <function in1d at 0x250a6e0>, 'interp': <function interp at 0x250acf8>, 'draw': <function draw at 0x3347140>, 'ginput': <function ginput at 0x33472a8>, 'rcdefaults': <function rcdefaults at 0x32eab18>, 'rfft': <function rfft at 0x2593e60>, 'hypot': <ufunc 'hypot'>, 'logical_and': <ufunc 'logical_and'>, 'rrule': <class dateutil.rrule.rrule at 0x2e5d2c0>, 'table': <function table at 0x334a230>, 'diagflat': <function diagflat at 0x24e8e60>, 'float128': <type 'numpy.float128'>, 'matshow': <function matshow at 0x33486e0>, 'isfinite': <ufunc 'isfinite'>, 'MINUTELY': 5, 'byte_bounds': <function byte_bounds at 0x24fcb18>, 'iinfo': <class numpy.core.getlimits.iinfo at 0x24559a8>, 'kaiser': <function kaiser at 0x2507b18>, 'ifftshift': <function ifftshift at 0x259d668>, 'inside_poly': <function inside_poly at 0x2bd0ed8>, 'warnings': <module 'warnings' from '/usr/lib64/python2.7/warnings.pyc'>, 'is_closed_polygon': <function is_closed_polygon at 0x2bd10c8>, 'polysub': <function polysub at 0x25769b0>, 'exit': <IPython.core.autocall.ExitAutocall object at 0x2006c50>, 'ifftn': <function ifftn at 0x259d230>, 'fromfile': <built-in function fromfile>, 'prod': <function prod at 0x244b6e0>, 'nanmax': <function nanmax at 0x2507398>, 'LinearLocator': <class matplotlib.ticker.LinearLocator at 0x2b2c188>, 'tensorinv': <function tensorinv at 0x2567d70>, 'plt': <module 'matplotlib.pyplot' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/pyplot.pyc'>, 'seterrobj': <built-in function seterrobj>, 'power': <ufunc 'power'>, 'array_split': <function array_split at 0x2512500>, 'zipf': <built-in method zipf of mtrand.RandomState object at 0x7f1382d162d0>, 'stem': <function stem at 0x3349c08>, 'ioff': <function ioff at 0x32ea8c0>, 'step': <function step at 0x3349c80>, 'percentile': <function percentile at 0x2507cf8>, 'hsv': <function hsv at 0x334a8c0>, 'axhspan': <function axhspan at 0x3348c08>, 'FPE_DIVIDEBYZERO': 1, '__name__': '__main__', 'subtract': <ufunc 'subtract'>, '_': '', 'mx2num': <function mx2num at 0x2ead668>, 'fft': <module 'numpy.fft' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/fft/__init__.pyc'>, 'frombuffer': <built-in function frombuffer>, 'iscomplex': <function iscomplex at 0x24e7cf8>, 'fill_betweenx': <function fill_betweenx at 0x3349398>, 'bivariate_normal': <function bivariate_normal at 0x2bceb90>, 'multivariate_normal': <built-in method multivariate_normal of mtrand.RandomState object at 0x7f1382d162d0>, 'add_docstring': <built-in function add_docstring>, 'argsort': <function argsort at 0x2440aa0>, 'fmin': <ufunc 'fmin'>, 'loadtxt': <function loadtxt at 0x2592b18>, 'bytes_': <type 'numpy.string_'>, 'ones_like': <ufunc 'ones_like'>, 'ScalarFormatter': <class matplotlib.ticker.ScalarFormatter at 0x2adfd50>, 'arcsinh': <ufunc 'arcsinh'>, 'CLIP': 0, 'exp_safe': <function exp_safe at 0x2bcf410>, '__builtin__': <module '__builtin__' (built-in)>, 'annotate': <function annotate at 0x334a320>, 'normalize': <class matplotlib.colors.Normalize at 0x27132c0>, 'intp': <type 'numpy.int64'>, 'standard_cauchy': <built-in method standard_cauchy of mtrand.RandomState object at 0x7f1382d162d0>, 'unpackbits': <built-in function unpackbits>, 'HOURLY': 4, 'arrow': <function arrow at 0x3348b18>, 'delete': <function delete at 0x2507f50>, 'Infinity': inf, 'log': <ufunc 'log'>, 'imio': <module 'ray.imio' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/imio.pyc'>, 'cdouble': <type 'numpy.complex128'>, 'complex128': <type 'numpy.complex128'>, 'tick_params': <function tick_params at 0x334a488>, 'switch_backend': <function switch_backend at 0x32ea758>, 'round_': <function round_ at 0x244b9b0>, 'broadcast_arrays': <function broadcast_arrays at 0x2512b18>, 'inner': <built-in function inner>, 'var': <function var at 0x244bb18>, 'c_': <numpy.lib.index_tricks.CClass object at 0x250e990>, 'slopes': <function slopes at 0x2bd0de8>, 'log10': <ufunc 'log10'>, 'hypergeometric': <built-in method hypergeometric of mtrand.RandomState object at 0x7f1382d162d0>, 'uintp': <type 'numpy.uint64'>, 'unwrap': <function unwrap at 0x250ade8>, 'NullLocator': <class matplotlib.ticker.NullLocator at 0x2b2c120>, 'triangular': <built-in method triangular of mtrand.RandomState object at 0x7f1382d162d0>, 'noncentral_chisquare': <built-in method noncentral_chisquare of mtrand.RandomState object at 0x7f1382d162d0>, 'histogram': <function histogram at 0x250a8c0>, 'issubdtype': <function issubdtype at 0x23e9398>, 'maximum_sctype': <function maximum_sctype at 0x23e90c8>, 'flexible': <type 'numpy.flexible'>, 'movavg': <function movavg at 0x2bcef50>, 'squeeze': <function squeeze at 0x2440cf8>, 'int8': <type 'numpy.int8'>, 'cholesky': <function cholesky at 0x2567e60>, 'info': <function info at 0x24fcd70>, 'seterr': <function seterr at 0x244cc80>, 'argmin': <function argmin at 0x2440b90>, 'fignum_exists': <function has_fignum at 0x2bd3578>, 'genfromtxt': <function genfromtxt at 0x2592c80>, 'rec_append_fields': <function rec_append_fields at 0x2bcfb18>, 'maximum': <ufunc 'maximum'>, 'record': <class 'numpy.core.records.record'>, 'obj2sctype': <function obj2sctype at 0x23e9230>, 'clongdouble': <type 'numpy.complex256'>, 'sum': <function sum at 0x244b140>, 'timedelta_': <type 'numpy.timedelta64'>, 'isrealobj': <function isrealobj at 0x24e7e60>, 'log1p': <ufunc 'log1p'>, '_oh': {}, 'flatten': <function flatten at 0x2711aa0>, 'YEARLY': 0, 'digitize': <built-in function digitize>, 'clongfloat': <type 'numpy.complex256'>, 'ylim': <function ylim at 0x3347ed8>, 'yscale': <function yscale at 0x3348050>, 'inv': <function inv at 0x2567de8>, 'ediff1d': <function ediff1d at 0x24fc758>, 'pie': <function pie at 0x3349758>, 'char': <module 'numpy.core.defchararray' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/core/defchararray.pyc'>, 'single': <type 'numpy.float32'>, 'isposinf': <function isposinf at 0x24e7aa0>, 'set_cmap': <function set_cmap at 0x3348668>, 'ScalarType': (<type 'int'>, <type 'float'>, <type 'complex'>, <type 'long'>, <type 'bool'>, <type 'str'>, <type 'unicode'>, <type 'buffer'>, <type 'numpy.int64'>, <type 'numpy.uint64'>, <type 'numpy.complex64'>, <type 'numpy.unicode_'>, <type 'numpy.float16'>, <type 'numpy.bool_'>, <type 'numpy.int64'>, <type 'numpy.uint64'>, <type 'numpy.complex128'>, <type 'numpy.void'>, <type 'numpy.int8'>, <type 'numpy.uint8'>, <type 'numpy.float32'>, <type 'numpy.complex256'>, <type 'numpy.int16'>, <type 'numpy.uint16'>, <type 'numpy.float64'>, <type 'numpy.object_'>, <type 'numpy.datetime64'>, <type 'numpy.int32'>, <type 'numpy.uint32'>, <type 'numpy.float128'>, <type 'numpy.string_'>, <type 'numpy.timedelta64'>), 'noncentral_f': <built-in method noncentral_f of mtrand.RandomState object at 0x7f1382d162d0>, 'triu': <function triu at 0x24fc050>, 'inf': inf, 'fill': <function fill at 0x33492a8>, 'expand_dims': <function expand_dims at 0x2512320>, 'pareto': <built-in method pareto of mtrand.RandomState object at 0x7f1382d162d0>, 'logspace': <function logspace at 0x2469b18>, 'floor': <ufunc 'floor'>, 'polyadd': <function polyadd at 0x2576938>, 'TU': TU, 'nan': nan, 'modf': <ufunc 'modf'>, 'emath': <module 'numpy.lib.scimath' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/lib/scimath.pyc'>, 'arctan': <ufunc 'arctan'>, 'bmat': <function bmat at 0x2511320>, 'Slider': <class 'matplotlib.widgets.Slider'>, 'prism': <function prism at 0x334aa28>, 'ERR_DEFAULT': 0, 'TH': TH, 'xscale': <function xscale at 0x3347f50>, 'register_cmap': <function register_cmap at 0x2dbac08>, 'roll': <function roll at 0x23eaed8>, 'string0': <type 'numpy.string_'>, 'compare_chararrays': <built-in function compare_chararrays>, 'vsplit': <function vsplit at 0x2512668>, 'real_if_close': <function real_if_close at 0x24e8050>, 'repeat': <function repeat at 0x2440848>, 'hamming': <function hamming at 0x25078c0>, 'ALLOW_THREADS': 1, 'errorbar': <function errorbar at 0x3349230>, 'ravel_multi_index': <built-in function ravel_multi_index>, 'string_': <type 'numpy.string_'>, 'isinf': <ufunc 'isinf'>, 'spacing': <ufunc 'spacing'>, 'Inf': inf, 'ndarray': <type 'numpy.ndarray'>, 'delaxes': <function delaxes at 0x33476e0>, 'pcolor': <function pcolor at 0x3349668>, 'e': 2.718281828459045, 'ERR_CALL': 3, 'datetime_data': <function datetime_data at 0x24e8230>, 'test': <bound method NoseTester.test of <numpy.testing.nosetester.NoseTester object at 0x256e9d0>>, 'ERR_IGNORE': 0, 'flag': <function flag at 0x334a758>, 'hsplit': <function hsplit at 0x25125f0>, 'result_type': <built-in function result_type>, 'gradient': <function gradient at 0x250ac08>, 'base_repr': <function base_repr at 0x244c8c0>, 'eigh': <function eigh at 0x25761b8>, 'argwhere': <function argwhere at 0x23eab90>, 'set_string_function': <function set_string_function at 0x244c668>, 'swapaxes': <function swapaxes at 0x2440938>, 'FixedLocator': <class matplotlib.ticker.FixedLocator at 0x2b2c0b8>, 'tensorsolve': <function tensorsolve at 0x2567c80>} | |
self.user_ns = {'disp': <function disp at 0x2507488>, 'union1d': <function union1d at 0x250a758>, 'all': <function all at 0x244b398>, 'dist': <function dist at 0x2bcecf8>, 'issubsctype': <function issubsctype at 0x23e9320>, 'sca': <function sca at 0x3347758>, 'savez': <function savez at 0x2592938>, 'entropy': <function entropy at 0x2bce488>, 'atleast_2d': <function atleast_2d at 0x24722a8>, 'restoredot': <built-in function restoredot>, 'ptp': <function ptp at 0x244b500>, 'Subplot': <class 'matplotlib.axes.AxesSubplot'>, 'frange': <function frange at 0x2bcf6e0>, 'PackageLoader': <class numpy._import_tools.PackageLoader at 0x22cc050>, 'show': <function show at 0x32ea7d0>, 'fft2': <function fft2 at 0x259d2a8>, 'rec2csv': <function rec2csv at 0x2bd0c80>, 'ix_': <function ix_ at 0x2511488>, 'resize': <function resize at 0x2440c80>, 'blackman': <function blackman at 0x2507758>, 'norm': <function norm at 0x2576578>, 'FLOATING_POINT_SUPPORT': 1, 'MultipleLocator': <class matplotlib.ticker.MultipleLocator at 0x2b2c258>, 'mlab': <module 'matplotlib.mlab' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/mlab.pyc'>, 'pkgload': <function pkgload at 0x22cb050>, 'mpl': <module 'matplotlib.mpl' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/mpl.pyc'>, 'rc': <function rc at 0x32eaaa0>, 'thetagrids': <function thetagrids at 0x3348320>, 'ERR_RAISE': 2, 'cool': <function cool at 0x334a668>, 'tri': <function tri at 0x24e8ed8>, 'lapack_lite': <module 'numpy.linalg.lapack_lite' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/linalg/lapack_lite.so'>, 'diag_indices': <function diag_indices at 0x2512050>, 'window_hanning': <function window_hanning at 0x2bc9b18>, 'array_equal': <function array_equal at 0x244cb90>, 'FormatStrFormatter': <class matplotlib.ticker.FormatStrFormatter at 0x2adfc80>, 'tanh': <ufunc 'tanh'>, 'longest_contiguous_ones': <function longest_contiguous_ones at 0x2bce668>, 'get_plot_commands': <function get_plot_commands at 0x3348410>, 'uint32': <type 'numpy.uint32'>, 'array_equiv': <function array_equiv at 0x244cc08>, 'fftn': <function fftn at 0x259d1b8>, 'indices': <function indices at 0x244c6e0>, 'fftpack': <module 'numpy.fft.fftpack' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/fft/fftpack.pyc'>, 'loads': <built-in function loads>, '_ii': u'rf = rf.fit(dat5[0], dat5[1][:, 0])', 'set_numeric_ops': <built-in function set_numeric_ops>, 'pmt': <function pmt at 0x2593320>, 'polar': <function polar at 0x3348848>, 'diag_indices_from': <function diag_indices_from at 0x25120c8>, 'object0': <type 'numpy.object_'>, 'ishold': <function ishold at 0x3347578>, 'rate': <function rate at 0x25935f0>, 'FPE_OVERFLOW': 2, 'Circle': <class 'matplotlib.patches.Circle'>, 'index_exp': <numpy.lib.index_tricks.IndexExpression object at 0x250ea10>, 'append': <function append at 0x250c0c8>, 'logseries': <built-in method logseries of mtrand.RandomState object at 0x7f1382d162d0>, 'nanargmax': <function nanargmax at 0x2507410>, 'hstack': <function hstack at 0x2472410>, 'typename': <function typename at 0x24e8140>, 'YearLocator': <class matplotlib.dates.YearLocator at 0x2e5def0>, 'diag': <function diag at 0x24e8de8>, 'pyplot': <module 'matplotlib.pyplot' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/pyplot.pyc'>, 'axes': <function axes at 0x3347668>, 'ERR_WARN': 1, 'unravel_index': <built-in function unravel_index>, 'uniform': <built-in method uniform of mtrand.RandomState object at 0x7f1382d162d0>, 'polyfit': <function polyfit at 0x2576848>, 'nanmin': <function nanmin at 0x25072a8>, 'memmap': <class 'numpy.core.memmap.memmap'>, 'axvline': <function axvline at 0x3348c80>, 'irfftn': <function irfftn at 0x259d488>, 'nan_to_num': <function nan_to_num at 0x24e7f50>, 'twinx': <function twinx at 0x33479b0>, 'contourf': <function contourf at 0x3349140>, 'complex64': <type 'numpy.complex64'>, 'fmax': <ufunc 'fmax'>, 'copysign': <ufunc 'copysign'>, 'matplotlib': <module 'matplotlib' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/__init__.pyc'>, 'l2norm': <function l2norm at 0x2bcf5f0>, 'FigureCanvasBase': <class 'matplotlib.backend_bases.FigureCanvasBase'>, 'sinh': <ufunc 'sinh'>, 'unicode_': <type 'numpy.unicode_'>, 'rgrids': <function rgrids at 0x33482a8>, 'legend': <function legend at 0x334a1b8>, 'trunc': <ufunc 'trunc'>, 'box': <function box at 0x3347c08>, 'vstack': <function vstack at 0x2472398>, 'ERR_PRINT': 4, 'levypdf': <function levypdf at 0x2bce578>, 'IndexDateFormatter': <class matplotlib.dates.IndexDateFormatter at 0x2e5da78>, 'MO': MO, 'asscalar': <function asscalar at 0x24e80c8>, 'LogLocator': <class matplotlib.ticker.LogLocator at 0x2b2c328>, 'binomial': <built-in method binomial of mtrand.RandomState object at 0x7f1382d162d0>, 'broken_barh': <function broken_barh at 0x3348e60>, 'poisson': <built-in method poisson of mtrand.RandomState object at 0x7f1382d162d0>, 'HourLocator': <class matplotlib.dates.HourLocator at 0x2eae120>, 'less_equal': <ufunc 'less_equal'>, 'l1norm': <function l1norm at 0x2bcf578>, 'BUFSIZE': 8192, 'sci': <function sci at 0x32eab90>, 'object_': <type 'numpy.object_'>, 'FR': FR, 'shuffle': <built-in method shuffle of mtrand.RandomState object at 0x7f1382d162d0>, 'divide': <ufunc 'divide'>, 'csingle': <type 'numpy.complex64'>, 'dtype': <type 'numpy.dtype'>, 'unsignedinteger': <type 'numpy.unsignedinteger'>, 'fftshift': <function fftshift at 0x259d5f0>, 'fastCopyAndTranspose': <built-in function _fastCopyAndTranspose>, 'num2date': <function num2date at 0x2ea7f50>, 'silent_list': <class 'matplotlib.cbook.silent_list'>, 'bitwise_and': <ufunc 'bitwise_and'>, 'uintc': <type 'numpy.uint32'>, 'viz': <module 'ray.viz' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/viz.pyc'>, 'byte': <type 'numpy.int8'>, 'select': <function select at 0x250ab18>, 'ticklabel_format': <function ticklabel_format at 0x334a398>, 'deg2rad': <ufunc 'deg2rad'>, 'plot': <function plot at 0x33497d0>, 'nditer': <type 'numpy.nditer'>, 'eye': <function eye at 0x24e8d70>, 'triu_indices': <function triu_indices at 0x24fc320>, 'kron': <function kron at 0x2512848>, 'newbuffer': <built-in function newbuffer>, 'negative': <ufunc 'negative'>, 'mintypecode': <function mintypecode at 0x24e7848>, 'standard_gamma': <built-in method standard_gamma of mtrand.RandomState object at 0x7f1382d162d0>, 'lstsq': <function lstsq at 0x2576500>, 'MAXDIMS': 32, 'clabel': <function clabel at 0x3349050>, 'setxor1d': <function setxor1d at 0x250a668>, 'rk4': <function rk4 at 0x2bceb18>, 'fftfreq': <function fftfreq at 0x259d6e0>, 'ifft2': <function ifft2 at 0x259d320>, 'einsum': <built-in function einsum>, 'uint0': <type 'numpy.uint64'>, 'zeros_like': <function zeros_like at 0x23ea7d0>, 'ylabel': <function ylabel at 0x3347de8>, 'int_asbuffer': <built-in function int_asbuffer>, 'uint8': <type 'numpy.uint8'>, 'chararray': <class 'numpy.core.defchararray.chararray'>, 'linspace': <function linspace at 0x2469848>, 'hold': <function hold at 0x3347500>, 'mirr': <function mirr at 0x2593758>, 'uint64': <type 'numpy.uint64'>, 'sample': <built-in method random_sample of mtrand.RandomState object at 0x7f1382d162d0>, 'ma': <module 'numpy.ma' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/ma/__init__.pyc'>, 'f': <built-in method f of mtrand.RandomState object at 0x7f1382d162d0>, 'Text': <class 'matplotlib.text.Text'>, 'true_divide': <ufunc 'true_divide'>, 'det': <function det at 0x2576488>, 'SU': SU, 'DateLocator': <class matplotlib.dates.DateLocator at 0x2e5ddb8>, '_i8': u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=2, shared=True, compute_importances=True)', 'SA': SA, 'finfo': <class 'numpy.core.getlimits.finfo'>, 'scatter': <function scatter at 0x3349a28>, 'Out': {}, 'Normalize': <class matplotlib.colors.Normalize at 0x27132c0>, 'spy': <function spy at 0x3348a28>, 'MinuteLocator': <class matplotlib.dates.MinuteLocator at 0x2eae188>, 'quiver': <function quiver at 0x3349938>, 'figure': <function figure at 0x32eac08>, 'subplot2grid': <function subplot2grid at 0x3347938>, 'dat5': [array([[ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, ..., | |
1.47194574e-01, -1.28100000e+03, 7.32595090e+02], | |
[ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, ..., | |
9.45086441e-02, -3.00000000e+00, -3.83166667e+02], | |
[ 2.00000000e+00, 1.50000006e-02, 2.25000018e-04, ..., | |
7.60885048e-02, -4.00000000e+00, -2.91428571e+02], | |
..., | |
[ 4.65202400e+06, 2.34875150e-01, 1.27652888e-01, ..., | |
4.84076382e-03, -1.00000000e+00, -3.57142857e-02], | |
[ 4.51129100e+06, 2.06613439e-01, 1.00846416e-01, ..., | |
2.89776650e-03, 0.00000000e+00, 0.00000000e+00], | |
[ 6.83703100e+06, 2.09185104e-01, 1.00843112e-01, ..., | |
9.15349975e-03, 0.00000000e+00, 0.00000000e+00]]), array([[-1., -1., -1.], | |
[-1., -1., -1.], | |
[-1., -1., -1.], | |
..., | |
[ 1., 1., 1.], | |
[ 1., 1., 1.], | |
[ 1., 1., 1.]]), array([[ 2.60137334e-06, 1.58145425e-08], | |
[ 6.00314360e-07, 2.94912022e-13], | |
[ 7.63666348e-07, 7.37280054e-13], | |
..., | |
[ 8.52329181e-01, 3.88535872e-01], | |
[ 6.46256899e-01, 2.10060368e-01], | |
[ 9.72391771e-01, 4.75216048e-01]]), array([[ 1221, 10564], | |
[10269, 10564], | |
[10271, 10564], | |
..., | |
[ 8035, 11185], | |
[11185, 39787], | |
[31356, 33347]], dtype=int32)], 'get_sparse_matrix': <function get_sparse_matrix at 0x2bcec80>, 'add_newdoc': <function add_newdoc at 0x2507e60>, 'seterrcall': <function seterrcall at 0x244ce60>, 'autumn': <function autumn at 0x33489b0>, 'logical_or': <ufunc 'logical_or'>, 'minimum': <ufunc 'minimum'>, 'WRAP': 1, 'tan': <ufunc 'tan'>, 'rms_flat': <function rms_flat at 0x2bcf500>, 'absolute': <ufunc 'absolute'>, 'gca': <function gca at 0x33477d0>, 'winter': <function winter at 0x334ab90>, 'gcf': <function gcf at 0x32eacf8>, 'gci': <function gci at 0x32eaa28>, 'csd': <function csd at 0x33491b8>, 'RRuleLocator': <class matplotlib.dates.RRuleLocator at 0x2e5de20>, 'get_array_wrap': <function get_array_wrap at 0x25127d0>, 'polymul': <function polymul at 0x2576a28>, 'hot': <function hot at 0x334a848>, 'minorticks_off': <function minorticks_off at 0x3348230>, 'get_ipython': <bound method TerminalInteractiveShell.get_ipython of <IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object at 0x200b250>>, 'get_figlabels': <function get_figlabels at 0x32eade8>, 'tile': <function tile at 0x25128c0>, 'array_str': <function array_str at 0x244c320>, 'eigvalsh': <function eigvalsh at 0x2576050>, 'iterable': <function iterable at 0x250a848>, 'pinv': <function pinv at 0x2576398>, 'classify': <module 'ray.classify' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/classify.pyc'>, 'longlong': <type 'numpy.int64'>, 'pink': <function pink at 0x334a9b0>, 'product': <function product at 0x244b1b8>, 'int16': <type 'numpy.int16'>, 's_': <numpy.lib.index_tricks.IndexExpression object at 0x250ea90>, 'mat': <function asmatrix at 0x250c320>, 'fv': <function fv at 0x25932a8>, 'summer': <function summer at 0x334ab18>, 'yticks': <function yticks at 0x3348140>, 'docstring': <module 'matplotlib.docstring' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/docstring.pyc'>, 'asanyarray': <function asanyarray at 0x23ea938>, 'uint': <type 'numpy.uint64'>, 'negative_binomial': <built-in method negative_binomial of mtrand.RandomState object at 0x7f1382d162d0>, 'npv': <function npv at 0x25936e0>, 'logaddexp': <ufunc 'logaddexp'>, 'flatnonzero': <function flatnonzero at 0x23eac08>, 'short': <type 'numpy.int16'>, 'correlate': <function correlate at 0x23eacf8>, 'getfigs': <function getfigs at 0x1f7f230>, 'fromstring': <built-in function fromstring>, 'pylab_setup': <function pylab_setup at 0x301ba28>, 'left_shift': <ufunc 'left_shift'>, 'tricontour': <function tricontour at 0x3349cf8>, 'subplots': <function subplots at 0x33478c0>, 'searchsorted': <function searchsorted at 0x2440c08>, 'barbs': <function barbs at 0x334a050>, 'int64': <type 'numpy.int64'>, 'gamma': <built-in method gamma of mtrand.RandomState object at 0x7f1382d162d0>, 'may_share_memory': <function may_share_memory at 0x24fcb90>, '__': '', 'GridSpec': <class 'matplotlib.gridspec.GridSpec'>, 'help': Type help() for interactive help, or help(object) for help about object., 'xlim': <function xlim at 0x3347e60>, 'copper': <function copper at 0x334a6e0>, 'MONTHLY': 1, 'dsplit': <function dsplit at 0x25126e0>, 'intersect1d': <function intersect1d at 0x250a5f0>, 'cosh': <ufunc 'cosh'>, 'window_none': <function window_none at 0x2bc9b90>, 'can_cast': <built-in function can_cast>, 'ppmt': <function ppmt at 0x2593488>, '__package__': None, 'cumsum': <function cumsum at 0x244b410>, 'roots': <function roots at 0x25765f0>, 'Widget': <class 'matplotlib.widgets.Widget'>, 'outer': <function outer at 0x23eade8>, 'intc': <type 'numpy.int32'>, 'fix': <function fix at 0x24e7a28>, 'stineman_interp': <function stineman_interp at 0x2bd0e60>, 'cla': <function cla at 0x334a0c8>, 'timedelta64': <type 'numpy.timedelta64'>, 'strpdate2num': <class matplotlib.dates.strpdate2num at 0x2e5d530>, 'standard_exponential': <built-in method standard_exponential of mtrand.RandomState object at 0x7f1382d162d0>, 'subplot_tool': <function subplot_tool at 0x3347b18>, 'choose': <function choose at 0x24407d0>, '_i': u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=2, shared=True, compute_importances=True)', 'FPE_INVALID': 8, 'fill_diagonal': <function fill_diagonal at 0x25119b0>, 'void0': <type 'numpy.void'>, 'get_fignums': <function get_fignums at 0x32ead70>, 'exception_to_str': <function exception_to_str at 0x2710a28>, 'SECONDLY': 6, 'logaddexp2': <ufunc 'logaddexp2'>, 'greater': <ufunc 'greater'>, 'suptitle': <function suptitle at 0x3347410>, 'get_backend': <function get_backend at 0x271f668>, 'matrix_power': <function matrix_power at 0x250c398>, 'histogram2d': <function histogram2d at 0x24fc140>, 'polyint': <function polyint at 0x2576758>, 'nonzero': <function nonzero at 0x2440ed8>, 'rank': <function rank at 0x244b848>, 'quiverkey': <function quiverkey at 0x33499b0>, 'datetime64': <type 'numpy.datetime64'>, 'complexfloating': <type 'numpy.complexfloating'>, 'is_numlike': <function is_numlike at 0x2711848>, 'ndindex': <class 'numpy.lib.index_tricks.ndindex'>, 'ctypeslib': <module 'numpy.ctypeslib' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/ctypeslib.pyc'>, 'waitforbuttonpress': <function waitforbuttonpress at 0x3347320>, 'PZERO': 0.0, 'relativedelta': <class dateutil.relativedelta.relativedelta at 0x2e5d4c8>, 'MonthLocator': <class matplotlib.dates.MonthLocator at 0x2e5df58>, 'asfarray': <function asfarray at 0x24e7b90>, 'radians': <ufunc 'radians'>, 'sin': <ufunc 'sin'>, 'fliplr': <function fliplr at 0x24e8c08>, 'alen': <function alen at 0x244b668>, 'recarray': <class 'numpy.core.records.recarray'>, 'fmod': <ufunc 'fmod'>, 'bone': <function bone at 0x334a5f0>, 'mean': <function mean at 0x244ba28>, 'griddata': <function griddata at 0x2bd0cf8>, 'poly_below': <function poly_below at 0x2bd0f50>, 'square': <ufunc 'square'>, 'isvector': <function isvector at 0x2bcf9b0>, 'ogrid': <numpy.lib.index_tricks.nd_grid object at 0x250e910>, 'bytes': <type 'str'>, 'nanargmin': <function nanargmin at 0x2507320>, 'r_': <numpy.lib.index_tricks.RClass object at 0x250e950>, 'agglo': <module 'ray.agglo' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/agglo.pyc'>, 'hanning': <function hanning at 0x2507848>, 'connect': <function connect at 0x32eaf50>, 'str_': <type 'numpy.string_'>, 'margins': <function margins at 0x334a500>, 'allclose': <function allclose at 0x244cb18>, 'extract': <function extract at 0x25070c8>, 'float16': <type 'numpy.float16'>, 'ulonglong': <type 'numpy.uint64'>, 'matrix': <class 'numpy.matrixlib.defmatrix.matrix'>, 'asarray': <function asarray at 0x23ea8c0>, 'True_': True, 'IndexLocator': <class matplotlib.ticker.IndexLocator at 0x2b2c050>, 'poly1d': <class 'numpy.lib.polynomial.poly1d'>, 'rf': RandomForestClassifier(bootstrap=True, compute_importances=True, | |
criterion='gini', max_depth=20, max_features='auto', | |
min_density=0.1, min_samples_leaf=1, min_samples_split=1, | |
n_estimators=100, n_jobs=2, oob_score=False, | |
random_state=<mtrand.RandomState object at 0x7f1382d162d0>, | |
shared=True, verbose=0), 'void': <type 'numpy.void'>, 'promote_types': <built-in function promote_types>, 'rec': <module 'numpy.core.records' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/core/records.pyc'>, 'arange': <built-in function arange>, 'plotting': <function plotting at 0x3348398>, 'math': <module 'math' from '/usr/lib64/python2.7/lib-dynload/math.so'>, 'get_cmap': <function get_cmap at 0x2dbac80>, 'log2': <ufunc 'log2'>, 'specgram': <function specgram at 0x3349b90>, 'date2num': <function date2num at 0x2ea7de8>, '__builtins__': {'bytearray': <type 'bytearray'>, 'IndexError': <type 'exceptions.IndexError'>, 'all': <built-in function all>, 'help': Type help() for interactive help, or help(object) for help about object., 'vars': <built-in function vars>, 'SyntaxError': <type 'exceptions.SyntaxError'>, '__IPYTHON__active': 'Deprecated, check for __IPYTHON__', 'unicode': <type 'unicode'>, 'UnicodeDecodeError': <type 'exceptions.UnicodeDecodeError'>, 'memoryview': <type 'memoryview'>, 'isinstance': <built-in function isinstance>, 'copyright': Copyright (c) 2001-2011 Python Software Foundation. | |
All Rights Reserved. | |
Copyright (c) 2000 BeOpen.com. | |
All Rights Reserved. | |
Copyright (c) 1995-2001 Corporation for National Research Initiatives. | |
All Rights Reserved. | |
Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. | |
All Rights Reserved., 'NameError': <type 'exceptions.NameError'>, 'BytesWarning': <type 'exceptions.BytesWarning'>, 'dict': <type 'dict'>, 'input': <built-in function input>, 'oct': <built-in function oct>, 'bin': <built-in function bin>, 'SystemExit': <type 'exceptions.SystemExit'>, 'StandardError': <type 'exceptions.StandardError'>, 'format': <built-in function format>, 'repr': <built-in function repr>, 'sorted': <built-in function sorted>, 'False': False, 'RuntimeWarning': <type 'exceptions.RuntimeWarning'>, 'list': <type 'list'>, 'iter': <built-in function iter>, 'reload': <built-in function reload>, 'Warning': <type 'exceptions.Warning'>, '__package__': None, 'round': <built-in function round>, 'dir': <built-in function dir>, 'cmp': <built-in function cmp>, 'set': <type 'set'>, 'bytes': <type 'str'>, 'reduce': <built-in function reduce>, 'intern': <built-in function intern>, 'issubclass': <built-in function issubclass>, 'Ellipsis': Ellipsis, 'EOFError': <type 'exceptions.EOFError'>, 'locals': <built-in function locals>, 'BufferError': <type 'exceptions.BufferError'>, 'slice': <type 'slice'>, 'FloatingPointError': <type 'exceptions.FloatingPointError'>, 'sum': <built-in function sum>, 'getattr': <built-in function getattr>, 'abs': <built-in function abs>, 'print': <built-in function print>, 'True': True, 'FutureWarning': <type 'exceptions.FutureWarning'>, 'ImportWarning': <type 'exceptions.ImportWarning'>, 'None': None, 'hash': <built-in function hash>, 'ReferenceError': <type 'exceptions.ReferenceError'>, 'len': <built-in function len>, 'credits': Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands | |
for supporting Python development. See www.python.org for more information., 'frozenset': <type 'frozenset'>, '__name__': '__builtin__', 'ord': <built-in function ord>, 'super': <type 'super'>, 'TypeError': <type 'exceptions.TypeError'>, 'license': See http://www.python.org/2.7/license.html, 'KeyboardInterrupt': <type 'exceptions.KeyboardInterrupt'>, 'UserWarning': <type 'exceptions.UserWarning'>, 'filter': <built-in function filter>, 'range': <built-in function range>, 'staticmethod': <type 'staticmethod'>, 'SystemError': <type 'exceptions.SystemError'>, 'BaseException': <type 'exceptions.BaseException'>, 'pow': <built-in function pow>, 'RuntimeError': <type 'exceptions.RuntimeError'>, 'float': <type 'float'>, 'MemoryError': <type 'exceptions.MemoryError'>, 'StopIteration': <type 'exceptions.StopIteration'>, 'globals': <built-in function globals>, 'divmod': <built-in function divmod>, 'enumerate': <type 'enumerate'>, 'apply': <built-in function apply>, 'LookupError': <type 'exceptions.LookupError'>, 'open': <built-in function open>, 'basestring': <type 'basestring'>, 'UnicodeError': <type 'exceptions.UnicodeError'>, 'zip': <built-in function zip>, 'hex': <built-in function hex>, 'long': <type 'long'>, 'next': <built-in function next>, 'ImportError': <type 'exceptions.ImportError'>, 'chr': <built-in function chr>, 'xrange': <type 'xrange'>, 'type': <type 'type'>, '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", 'Exception': <type 'exceptions.Exception'>, '__IPYTHON__': True, 'tuple': <type 'tuple'>, 'UnicodeTranslateError': <type 'exceptions.UnicodeTranslateError'>, 'reversed': <type 'reversed'>, 'UnicodeEncodeError': <type 'exceptions.UnicodeEncodeError'>, 'IOError': <type 'exceptions.IOError'>, 'hasattr': <built-in function hasattr>, 'delattr': <built-in function delattr>, 'setattr': <built-in function setattr>, 'raw_input': <built-in function raw_input>, 'SyntaxWarning': <type 'exceptions.SyntaxWarning'>, 'compile': <built-in function compile>, 'ArithmeticError': <type 'exceptions.ArithmeticError'>, 'str': <type 'str'>, 'property': <type 'property'>, 'dreload': <function reload at 0x201b398>, 'GeneratorExit': <type 'exceptions.GeneratorExit'>, 'int': <type 'int'>, '__import__': <built-in function __import__>, 'KeyError': <type 'exceptions.KeyError'>, 'coerce': <built-in function coerce>, 'PendingDeprecationWarning': <type 'exceptions.PendingDeprecationWarning'>, 'file': <type 'file'>, 'EnvironmentError': <type 'exceptions.EnvironmentError'>, 'unichr': <built-in function unichr>, 'id': <built-in function id>, 'OSError': <type 'exceptions.OSError'>, 'DeprecationWarning': <type 'exceptions.DeprecationWarning'>, 'min': <built-in function min>, 'UnicodeWarning': <type 'exceptions.UnicodeWarning'>, 'execfile': <built-in function execfile>, 'any': <built-in function any>, 'complex': <type 'complex'>, 'bool': <type 'bool'>, 'get_ipython': <bound method TerminalInteractiveShell.get_ipython of <IPython.frontend.terminal.interactiveshell.TerminalInteractiveShell object at 0x200b250>>, 'ValueError': <type 'exceptions.ValueError'>, 'NotImplemented': NotImplemented, 'map': <built-in function map>, 'buffer': <type 'buffer'>, 'max': <built-in function max>, 'object': <type 'object'>, 'TabError': <type 'exceptions.TabError'>, 'callable': <built-in function callable>, 'ZeroDivisionError': <type 'exceptions.ZeroDivisionError'>, 'eval': <built-in function eval>, '__debug__': True, 'IndentationError': <type 'exceptions.IndentationError'>, 'AssertionError': <type 'exceptions.AssertionError'>, 'classmethod': <type 'classmethod'>, 'UnboundLocalError': <type 'exceptions.UnboundLocalError'>, 'NotImplementedError': <type 'exceptions.NotImplementedError'>, 'AttributeError': <type 'exceptions.AttributeError'>, 'OverflowError': <type 'exceptions.OverflowError'>}, 'rec_join': <function rec_join at 0x2bcfd70>, 'acorr': <function acorr at 0x3348aa0>, 'cumproduct': <function cumproduct at 0x244b488>, 'diagonal': <function diagonal at 0x2440d70>, 'atleast_1d': <function atleast_1d at 0x2469e60>, 'meshgrid': <function meshgrid at 0x2507ed8>, 'LogFormatter': <class matplotlib.ticker.LogFormatter at 0x2adfdb8>, 'column_stack': <function column_stack at 0x2512398>, 'put': <function put at 0x24408c0>, '___': '', 'remainder': <ufunc 'remainder'>, 'get_scale_docs': <function get_scale_docs at 0x2b30500>, 'row_stack': <function vstack at 0x2472398>, 'expm1': <ufunc 'expm1'>, 'RandomForestClassifier': <class 'sklearn.ensemble.forest.RandomForestClassifier'>, 'nper': <function nper at 0x2593398>, 'insert': <function insert at 0x250c050>, 'semilogx': <function semilogx at 0x3349aa0>, 'semilogy': <function semilogy at 0x3349b18>, 'ndfromtxt': <function ndfromtxt at 0x2592cf8>, 'sometrue': <function sometrue at 0x244b230>, 'place': <function place at 0x2507140>, 'DataSource': <class 'numpy.lib._datasource.DataSource'>, 'newaxis': None, 'arccos': <ufunc 'arccos'>, 'epoch2num': <function epoch2num at 0x2ead578>, 'signedinteger': <type 'numpy.signedinteger'>, 'ndim': <function ndim at 0x244b7d0>, 'rand': <built-in method rand of mtrand.RandomState object at 0x7f1382d162d0>, 'irfft': <function irfft at 0x2593ed8>, 'ranf': <built-in method random_sample of mtrand.RandomState object at 0x7f1382d162d0>, 'subplots_adjust': <function subplots_adjust at 0x3347aa0>, 'rint': <ufunc 'rint'>, 'fill_between': <function fill_between at 0x3349320>, 'Axes': <class 'matplotlib.axes.Axes'>, 'MaxNLocator': <class matplotlib.ticker.MaxNLocator at 0x2b2c2c0>, 'arctan2': <ufunc 'arctan2'>, 'little_endian': True, 'ldexp': <ufunc 'ldexp'>, 'lognormal': <built-in method lognormal of mtrand.RandomState object at 0x7f1382d162d0>, 'lookfor': <function lookfor at 0x24fce60>, 'hfft': <function hfft at 0x2593f50>, 'array': <built-in function array>, 'common_type': <function common_type at 0x24e81b8>, 'size': <function size at 0x244b8c0>, 'logical_xor': <ufunc 'logical_xor'>, 'geterrcall': <function geterrcall at 0x244ced8>, 'figimage': <function figimage at 0x3347488>, 'jet': <function jet at 0x334a938>, 'figaspect': <function figaspect at 0x2ffa848>, 'Line2D': <class 'matplotlib.lines.Line2D'>, 'exp2': <ufunc 'exp2'>, 'imshow': <function imshow at 0x3349578>, 'axhline': <function axhline at 0x3348b90>, 'bool8': <type 'numpy.bool_'>, 'colormaps': <function colormaps at 0x3348500>, 'msort': <function msort at 0x2507c08>, 'alltrue': <function alltrue at 0x244b2a8>, 'zeros': <built-in function zeros>, 'identity': <function identity at 0x244caa0>, 'False_': False, 'ispower2': <function ispower2 at 0x2bcf938>, 'LogFormatterExponent': <class matplotlib.ticker.LogFormatterExponent at 0x2adfe20>, 'ihfft': <function ihfft at 0x259d050>, 'nansum': <function nansum at 0x2507230>, 'bool_': <type 'numpy.bool_'>, 'inexact': <type 'numpy.inexact'>, 'distances_along_curve': <function distances_along_curve at 0x2bd1320>, 'broadcast': <type 'numpy.broadcast'>, 'liaupunov': <function liaupunov at 0x2bceed8>, 'amin': <function amin at 0x244b5f0>, 'arctanh': <ufunc 'arctanh'>, 'typecodes': {'All': '?bhilqpBHILQPefdgFDGSUVOMm', 'Complex': 'FDG', 'AllFloat': 'efdgFDG', 'Integer': 'bhilqp', 'UnsignedInteger': 'BHILQP', 'Float': 'efdg', 'Character': 'c', 'Datetime': 'Mm', 'AllInteger': 'bBhHiIlLqQpP'}, 'number': <type 'numpy.number'>, 'savetxt': <function savetxt at 0x2592b90>, 'copy': <function copy at 0x250ab90>, 'int_': <type 'numpy.int64'>, 'std': <function std at 0x244baa0>, 'segments_intersect': <function segments_intersect at 0x2bcede8>, 'not_equal': <ufunc 'not_equal'>, 'fromfunction': <function fromfunction at 0x244c758>, 'Figure': <class 'matplotlib.figure.Figure'>, 'tril_indices_from': <function tril_indices_from at 0x24fc2a8>, 'double': <type 'numpy.float64'>, 'require': <function require at 0x23eaaa0>, 'triplot': <function triplot at 0x3349e60>, '_iii': u"dat5 = classify.load_training_data_from_disk('training/multi-channel-graph-e05-5.trdat.h5')", 'xlabel': <function xlabel at 0x3347d70>, 'typeNA': {<type 'numpy.unicode_'>: 'Unicode0', 'd8': 'Datetime64', 'Int32': <type 'numpy.int32'>, 'Complex64': <type 'numpy.complex128'>, <type 'numpy.void'>: 'Void0', <type 'numpy.int8'>: 'Int8', 'c16': 'Complex64', 'D': 'Complex64', 'H': 'UInt16', 'L': 'UInt64', <type 'numpy.int16'>: 'Int16', <type 'numpy.datetime64'>: 'Datetime64', 'd': 'Float64', 't8': 'Timedelta64', 'h': 'Int16', 'l': 'Int64', <type 'numpy.int32'>: 'Int32', <type 'numpy.timedelta64'>: 'Timedelta64', 'c32': 'Complex128', <type 'numpy.int64'>: 'Int64', 'Timedelta64': <type 'numpy.timedelta64'>, <type 'numpy.float16'>: 'Float16', 'b1': 'Bool', 'String0': <type 'numpy.string_'>, <type 'numpy.int64'>: 'Int64', 'I': 'UInt32', <type 'numpy.uint8'>: 'UInt8', '?': 'Bool', 'Void0': <type 'numpy.void'>, 'G': 'Complex128', 'O': 'Object0', 'UInt8': <type 'numpy.uint8'>, 'S': 'String0', <type 'numpy.uint16'>: 'UInt16', 'UInt64': <type 'numpy.uint64'>, 'g': 'Float128', <type 'numpy.uint32'>: 'UInt32', 'Float16': <type 'numpy.float16'>, <type 'numpy.uint64'>: 'UInt64', 'Bool': <type 'numpy.bool_'>, <type 'numpy.bool_'>: 'Bool', <type 'numpy.uint64'>: 'UInt64', 'u8': <type 'numpy.uint64'>, 'u4': <type 'numpy.uint32'>, 'Unicode0': <type 'numpy.unicode_'>, 'u1': <type 'numpy.uint8'>, 'u2': <type 'numpy.uint16'>, 'Datetime64': <type 'numpy.datetime64'>, 'Int8': <type 'numpy.int8'>, <type 'numpy.float32'>: 'Float32', 'B': 'UInt8', 'F': 'Complex32', 'c8': 'Complex32', 'Int64': <type 'numpy.int64'>, 'Complex32': <type 'numpy.complex64'>, 'V': 'Void0', <type 'numpy.float64'>: 'Float64', 'b': 'Int8', 'f': 'Float32', 'UInt32': <type 'numpy.uint32'>, <type 'numpy.float128'>: 'Float128', 'f16': 'Float128', 'f2': 'Float16', 'f4': 'Float32', 'f8': 'Float64', <type 'numpy.complex64'>: 'Complex32', 'Complex128': <type 'numpy.complex256'>, 'Object0': <type 'numpy.object_'>, 'Int16': <type 'numpy.int16'>, <type 'numpy.complex128'>: 'Complex64', 'Float64': <type 'numpy.float64'>, 'UInt16': <type 'numpy.uint16'>, 'Float32': <type 'numpy.float32'>, <type 'numpy.complex256'>: 'Complex128', 'i8': <type 'numpy.int64'>, 'i1': <type 'numpy.int8'>, 'i2': <type 'numpy.int16'>, 'M': 'Datetime64', 'i4': <type 'numpy.int32'>, 'Q': 'UInt64', 'U': 'Unicode0', <type 'numpy.object_'>: 'Object0', 'e': 'Float16', 'i': 'Int32', 'm': 'Timedelta64', 'q': 'Int64', <type 'numpy.string_'>: 'String0', 'Float128': <type 'numpy.float128'>}, 'getbuffer': <built-in function getbuffer>, 'xcorr': <function xcorr at 0x3349f50>, 'slogdet': <function slogdet at 0x2576410>, 'datetime_': <type 'numpy.datetime64'>, 'clip': <function clip at 0x244b0c8>, 'tripcolor': <function tripcolor at 0x3349de8>, 'half': <type 'numpy.float16'>, 'normal': <built-in method normal of mtrand.RandomState object at 0x7f1382d162d0>, 'savez_compressed': <function savez_compressed at 0x25929b0>, 'TickHelper': <class matplotlib.ticker.TickHelper at 0x2aab738>, 'isinteractive': <function isinteractive at 0x32ea848>, 'eigvals': <function eigvals at 0x2567f50>, 'seed': <built-in method seed of mtrand.RandomState object at 0x7f1382d162d0>, 'triu_indices_from': <function triu_indices_from at 0x24fc398>, 'conjugate': <ufunc 'conjugate'>, 'clim': <function clim at 0x33485f0>, 'alterdot': <built-in function alterdot>, 'asfortranarray': <function asfortranarray at 0x23eaa28>, 'binary_repr': <function binary_repr at 0x244c848>, 'angle': <function angle at 0x250ad70>, '_i9': u'rf = rf.fit(dat5[0], dat5[1][:, 0])', 'randint': <built-in method randint of mtrand.RandomState object at 0x7f1382d162d0>, '_i7': u'rf = rf.fit(dat5[0], dat5[1][:, 0])', '_i6': u"dat5 = classify.load_training_data_from_disk('training/multi-channel-graph-e05-5.trdat.h5')", '_i5': u'from ray import *', 'linalg': <module 'numpy.linalg' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/linalg/__init__.pyc'>, 'apply_over_axes': <function apply_over_axes at 0x25122a8>, '_i2': u"sys.path.insert(0, '/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/')", '_i1': u'import sys', 'figlegend': <function figlegend at 0x33471b8>, 'ERR_LOG': 5, 'right_shift': <ufunc 'right_shift'>, 'take': <function take at 0x24406e0>, 'rollaxis': <function rollaxis at 0x23eaf50>, 'set_state': <built-in method set_state of mtrand.RandomState object at 0x7f1382d162d0>, 'solve': <function solve at 0x2567cf8>, 'FixedFormatter': <class matplotlib.ticker.FixedFormatter at 0x2adfbb0>, 'boxplot': <function boxplot at 0x3348ed8>, 'SecondLocator': <class matplotlib.dates.SecondLocator at 0x2eae1f0>, 'spectral': <function spectral at 0x334ac08>, 'get_numarray_include': <function get_numarray_include at 0x24fc848>, 'trace': <function trace at 0x2440de8>, 'Artist': <class 'matplotlib.artist.Artist'>, 'any': <function any at 0x244b320>, 'Button': <class 'matplotlib.widgets.Button'>, 'who': <function who at 0x24fcc08>, 'compress': <function compress at 0x244b050>, 'NullFormatter': <class matplotlib.ticker.NullFormatter at 0x2adfb48>, 'histogramdd': <function histogramdd at 0x250a938>, 'beta': <built-in method beta of mtrand.RandomState object at 0x7f1382d162d0>, 'amap': <function amap at 0x2bcf488>, 'multiply': <ufunc 'multiply'>, 'mask_indices': <function mask_indices at 0x24fc1b8>, 'detrend_none': <function detrend_none at 0x2bc9d70>, 'amax': <function amax at 0x244b578>, 'subplot': <function subplot at 0x3347848>, 'logical_not': <ufunc 'logical_not'>, 'dist_point_to_segment': <function dist_point_to_segment at 0x2bced70>, 'nbytes': {<type 'numpy.int64'>: 8, <type 'numpy.uint64'>: 8, <type 'numpy.complex64'>: 8, <type 'numpy.unicode_'>: 0, <type 'numpy.float16'>: 2, <type 'numpy.bool_'>: 1, <type 'numpy.int64'>: 8, <type 'numpy.uint64'>: 8, <type 'numpy.complex128'>: 16, <type 'numpy.void'>: 0, <type 'numpy.int8'>: 1, <type 'numpy.uint8'>: 1, <type 'numpy.float32'>: 4, <type 'numpy.complex256'>: 32, <type 'numpy.int16'>: 2, <type 'numpy.uint16'>: 2, <type 'numpy.float64'>: 8, <type 'numpy.object_'>: 8, <type 'numpy.datetime64'>: 8, <type 'numpy.int32'>: 4, <type 'numpy.uint32'>: 4, <type 'numpy.float128'>: 16, <type 'numpy.string_'>: 0, <type 'numpy.timedelta64'>: 8}, 'exp': <ufunc 'exp'>, '_ih': ['', u'import sys', u"sys.path.insert(0, '/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/')", u'from sklearn.ensemble import RandomForestClassifier', u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=16, shared=True, compute_importances=True)', u'from ray import *', u"dat5 = classify.load_training_data_from_disk('training/multi-channel-graph-e05-5.trdat.h5')", u'rf = rf.fit(dat5[0], dat5[1][:, 0])', u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=2, shared=True, compute_importances=True)', u'rf = rf.fit(dat5[0], dat5[1][:, 0])'], 'axvspan': <function axvspan at 0x3348cf8>, 'FuncFormatter': <class matplotlib.ticker.FuncFormatter at 0x2adfc18>, 'dot': <built-in function dot>, 'int0': <type 'numpy.int64'>, 'pylab': <module 'matplotlib.pylab' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/pylab.pyc'>, 'WE': WE, 'longfloat': <type 'numpy.float128'>, 'draw_if_interactive': <function wrapper at 0x334ad70>, 'rayleigh': <built-in method rayleigh of mtrand.RandomState object at 0x7f1382d162d0>, 'text': <function text at 0x334a2a8>, 'random': <module 'numpy.random' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/random/__init__.pyc'>, 'demean': <function demean at 0x2bc9c80>, 'random_integers': <built-in method random_integers of mtrand.RandomState object at 0x7f1382d162d0>, 'datetime': <module 'datetime' from '/usr/lib64/python2.7/lib-dynload/datetime.so'>, 'colors': <function colors at 0x3348488>, 'array2string': <function array2string at 0x244bed8>, 'locator_params': <function locator_params at 0x334a410>, 'find': <function find at 0x2bce5f0>, 'pause': <function pause at 0x32ea9b0>, 'randn': <built-in method randn of mtrand.RandomState object at 0x7f1382d162d0>, 'errstate': <class 'numpy.core.numeric.errstate'>, 'title': <function title at 0x3347c80>, 'FPE_UNDERFLOW': 4, 'frexp': <ufunc 'frexp'>, 'savefig': <function savefig at 0x3347230>, 'PolarAxes': <class 'matplotlib.projections.polar.PolarAxes'>, 'DAILY': 3, 'center_matrix': <function center_matrix at 0x2bceaa0>, 'SHIFT_OVERFLOW': 3, 'over': <function over at 0x33475f0>, 'complex256': <type 'numpy.complex256'>, 'plotfile': <function plotfile at 0x33488c0>, 'get': <function getp at 0x28ad8c0>, 'NZERO': -0.0, 'ceil': <ufunc 'ceil'>, 'ones': <function ones at 0x244ca28>, 'count_nonzero': <built-in function count_nonzero>, 'gray': <function gray at 0x334a7d0>, 'qr': <function qr at 0x2567ed8>, 'bar': <function bar at 0x3348d70>, 'median': <function median at 0x2507c80>, 'geterr': <function geterr at 0x244ccf8>, 'convolve': <function convolve at 0x23ead70>, 'twiny': <function twiny at 0x3347a28>, 'logistic': <built-in method logistic of mtrand.RandomState object at 0x7f1382d162d0>, 'weibull': <built-in method weibull of mtrand.RandomState object at 0x7f1382d162d0>, 'isreal': <function isreal at 0x24e7d70>, 'where': <built-in function where>, 'rcParamsDefault': {'axes.formatter.use_locale': False, 'figure.subplot.right': 0.9, 'mathtext.cal': 'cursive', 'font.fantasy': ['Comic Sans MS', 'Chicago', 'Charcoal', 'ImpactWestern', 'fantasy'], 'xtick.minor.pad': 4, 'tk.pythoninspect': False, 'image.aspect': 'equal', 'font.cursive': ['Apple Chancery', 'Textile', 'Zapf Chancery', 'Sand', 'cursive'], 'figure.subplot.hspace': 0.2, 'keymap.fullscreen': 'f', 'examples.directory': '', 'xtick.direction': 'in', 'axes.facecolor': 'w', 'mathtext.fontset': 'cm', 'ytick.direction': 'in', 'keymap.pan': 'p', 'path.snap': True, 'axes.axisbelow': False, 'lines.markersize': 6, 'figure.dpi': 80, 'text.usetex': False, 'image.origin': 'upper', 'patch.edgecolor': 'k', 'legend.labelspacing': 0.5, 'ps.useafm': False, 'mathtext.bf': 'serif:bold', 'lines.solid_joinstyle': 'round', 'font.monospace': ['Bitstream Vera Sans Mono', 'DejaVu Sans Mono', 'Andale Mono', 'Nimbus Mono L', 'Courier New', 'Courier', 'Fixed', 'Terminal', 'monospace'], 'xtick.minor.size': 2, 'axes.formatter.limits': [-7, 7], 'figure.subplot.wspace': 0.2, 'savefig.edgecolor': 'w', 'image.cmap': 'jet', 'lines.marker': 'None', 'tk.window_focus': False, 'backend.qt4': 'PyQt4', 'font.serif': ['Bitstream Vera Serif', 'DejaVu Serif', 'New Century Schoolbook', 'Century Schoolbook L', 'Utopia', 'ITC Bookman', 'Bookman', 'Nimbus Roman No9 L', 'Times New Roman', 'Times', 'Palatino', 'Charter', 'serif'], 'savefig.facecolor': 'w', 'ytick.minor.size': 2, 'font.stretch': 'normal', 'text.dvipnghack': None, 'ytick.color': 'k', 'svg.fonttype': 'path', 'lines.linestyle': '-', 'xtick.color': 'k', 'xtick.major.pad': 4, 'patch.facecolor': 'b', 'figure.figsize': [8.0, 6.0], 'axes.linewidth': 1.0, 'keymap.zoom': 'o', 'legend.handletextpad': 0.8, 'mathtext.fallback_to_cm': True, 'lines.linewidth': 1.0, 'savefig.dpi': 100, 'verbose.fileo': 'sys.stdout', 'svg.image_noscale': False, 'docstring.hardcopy': False, 'font.size': 12, 'ps.fonttype': 3, 'path.simplify': True, 'keymap.all_axes': 'a', 'polaraxes.grid': True, 'text.hinting': True, 'pdf.compression': 6, 'grid.linewidth': 0.5, 'legend.frameon': True, 'figure.autolayout': False, 'figure.facecolor': '0.75', 'ps.usedistiller': False, 'legend.isaxes': True, 'figure.edgecolor': 'w', 'mathtext.tt': 'monospace', 'contour.negative_linestyle': 'dashed', 'image.interpolation': 'bilinear', 'lines.markeredgewidth': 0.5, 'keymap.home': ['h', 'r', 'home'], 'axes3d.grid': True, 'axes.edgecolor': 'k', 'legend.shadow': False, 'axes.titlesize': 'large', 'backend': 'Agg', 'xtick.major.size': 4, 'keymap.xscale': ['k', 'L'], 'legend.fontsize': 'large', 'lines.solid_capstyle': 'projecting', 'mathtext.it': 'serif:italic', 'keymap.save': 's', 'font.variant': 'normal', 'toolbar': 'toolbar2', 'xtick.labelsize': 'medium', 'axes.unicode_minus': True, 'ps.distiller.res': 6000, 'axes.labelweight': 'normal', 'pdf.fonttype': 3, 'patch.linewidth': 1.0, 'pdf.inheritcolor': False, 'axes.color_cycle': ['b', 'g', 'r', 'c', 'm', 'y', 'k'], 'lines.dash_capstyle': 'butt', 'lines.color': 'b', 'figure.subplot.top': 0.9, 'pdf.use14corefonts': False, 'legend.markerscale': 1.0, 'patch.antialiased': True, 'font.style': 'normal', 'keymap.forward': ['right', 'v'], 'backend_fallback': True, 'legend.fancybox': False, 'grid.linestyle': ':', 'savefig.extension': 'auto', 'text.color': 'k', 'mathtext.rm': 'serif', 'legend.loc': 'upper right', 'interactive': False, 'cairo.format': 'png', 'savefig.orientation': 'portrait', 'svg.image_inline': True, 'ytick.major.size': 4, 'axes.grid': False, 'plugins.directory': '.matplotlib_plugins', 'grid.color': 'k', 'timezone': 'UTC', 'ytick.major.pad': 4, 'legend.borderpad': 0.4, 'examples.download': True, 'lines.dash_joinstyle': 'round', 'datapath': '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/mpl-data', 'lines.antialiased': True, 'text.latex.unicode': False, 'legend.handleheight': 0.7, 'image.lut': 256, 'figure.subplot.bottom': 0.1, 'text.latex.preamble': [''], 'legend.numpoints': 2, 'legend.handlelength': 2.0, 'keymap.grid': 'g', 'font.sans-serif': ['Bitstream Vera Sans', 'DejaVu Sans', 'Lucida Grande', 'Verdana', 'Geneva', 'Lucid', 'Arial', 'Helvetica', 'Avant Garde', 'sans-serif'], 'axes.labelcolor': 'k', 'font.family': 'sans-serif', 'axes.labelsize': 'medium', 'ytick.minor.pad': 4, 'legend.borderaxespad': 0.5, 'mathtext.sf': 'sans\\-serif', 'axes.hold': True, 'verbose.level': 'silent', 'mathtext.default': 'it', 'figure.subplot.left': 0.125, 'legend.columnspacing': 2.0, 'text.latex.preview': False, 'font.weight': 'normal', 'keymap.yscale': 'l', 'image.resample': False, 'agg.path.chunksize': 0, 'path.simplify_threshold': 0.1111111111111111, 'ytick.labelsize': 'medium', 'ps.papersize': 'letter', 'svg.embed_char_paths': True, 'keymap.back': ['left', 'c', 'backspace']}, 'fftsurr': <function fftsurr at 0x2bcee60>, 'SHIFT_UNDERFLOW': 6, 'argmax': <function argmax at 0x2440b18>, 'minorticks_on': <function minorticks_on at 0x33481b8>, 'prctile': <function prctile at 0x2bce7d0>, 'deprecate_with_doc': <function <lambda> at 0x24fcaa0>, 'imsave': <function imsave at 0x33487d0>, 'polyder': <function polyder at 0x25767d0>, 'LogFormatterMathtext': <class matplotlib.ticker.LogFormatterMathtext at 0x2adfe88>, 'imread': <function imread at 0x3348758>, 'close': <function close at 0x32eaed8>, 'DayLocator': <class matplotlib.dates.DayLocator at 0x2eae0b8>, 'Formatter': <class matplotlib.ticker.Formatter at 0x2adfa78>, 'is_string_like': <function is_string_like at 0x2711668>, 'contour': <function contour at 0x33490c8>, 'rad2deg': <ufunc 'rad2deg'>, 'isnan': <ufunc 'isnan'>, 'autoscale': <function autoscale at 0x334a578>, 'get_xyz_where': <function get_xyz_where at 0x2bcec08>, 'irr': <function irr at 0x2593668>, 'sctypeDict': {0: <type 'numpy.bool_'>, 1: <type 'numpy.int8'>, 2: <type 'numpy.uint8'>, 3: <type 'numpy.int16'>, 4: <type 'numpy.uint16'>, 5: <type 'numpy.int32'>, 6: <type 'numpy.uint32'>, 7: <type 'numpy.int64'>, 8: <type 'numpy.uint64'>, 9: <type 'numpy.int64'>, 10: <type 'numpy.uint64'>, 11: <type 'numpy.float32'>, 12: <type 'numpy.float64'>, 13: <type 'numpy.float128'>, 14: <type 'numpy.complex64'>, 15: <type 'numpy.complex128'>, 16: <type 'numpy.complex256'>, 17: <type 'numpy.object_'>, 18: <type 'numpy.string_'>, 19: <type 'numpy.unicode_'>, 20: <type 'numpy.void'>, 21: <type 'numpy.datetime64'>, 'unicode': <type 'numpy.unicode_'>, 23: <type 'numpy.float16'>, 'cfloat': <type 'numpy.complex128'>, 'longfloat': <type 'numpy.float128'>, 'Int32': <type 'numpy.int32'>, 'Complex64': <type 'numpy.complex128'>, 'unicode_': <type 'numpy.unicode_'>, 'complex': <type 'numpy.complex128'>, 'timedelta64': <type 'numpy.timedelta64'>, 'uint16': <type 'numpy.uint16'>, 'c16': <type 'numpy.complex128'>, 'float32': <type 'numpy.float32'>, 'complex256': <type 'numpy.complex256'>, 'D': <type 'numpy.complex128'>, 'H': <type 'numpy.uint16'>, 'void': <type 'numpy.void'>, 'unicode0': <type 'numpy.unicode_'>, 'L': <type 'numpy.uint64'>, 'P': <type 'numpy.uint64'>, 'half': <type 'numpy.float16'>, 'void0': <type 'numpy.void'>, 'd': <type 'numpy.float64'>, 't8': <type 'numpy.timedelta64'>, 'h': <type 'numpy.int16'>, 'l': <type 'numpy.int64'>, 'p': <type 'numpy.int64'>, 'c32': <type 'numpy.complex256'>, 22: <type 'numpy.timedelta64'>, 'M8[us]': <type 'numpy.datetime64'>, 'O8': <type 'numpy.object_'>, 'Timedelta64': <type 'numpy.timedelta64'>, 'object0': <type 'numpy.object_'>, 'b1': <type 'numpy.bool_'>, 'float128': <type 'numpy.float128'>, 'String0': <type 'numpy.string_'>, 'float16': <type 'numpy.float16'>, 'ulonglong': <type 'numpy.uint64'>, 'm8[us]': <type 'numpy.timedelta64'>, 'i1': <type 'numpy.int8'>, 'uint32': <type 'numpy.uint32'>, '?': <type 'numpy.bool_'>, 'Void0': <type 'numpy.void'>, 'complex64': <type 'numpy.complex64'>, 'G': <type 'numpy.complex256'>, 'O': <type 'numpy.object_'>, 'UInt8': <type 'numpy.uint8'>, 'S': <type 'numpy.string_'>, 'byte': <type 'numpy.int8'>, 'UInt64': <type 'numpy.uint64'>, 'g': <type 'numpy.float128'>, 'float64': <type 'numpy.float64'>, 'ushort': <type 'numpy.uint16'>, 'float_': <type 'numpy.float64'>, 'uint': <type 'numpy.uint64'>, 'object_': <type 'numpy.object_'>, 'Float16': <type 'numpy.float16'>, 'complex_': <type 'numpy.complex128'>, 'Unicode0': <type 'numpy.unicode_'>, 'uintp': <type 'numpy.uint64'>, 'intc': <type 'numpy.int32'>, 'csingle': <type 'numpy.complex64'>, 'datetime64': <type 'numpy.datetime64'>, 'float': <type 'numpy.float64'>, 'bool8': <type 'numpy.bool_'>, 'Bool': <type 'numpy.bool_'>, 'intp': <type 'numpy.int64'>, 'uintc': <type 'numpy.uint32'>, 'bytes_': <type 'numpy.string_'>, 'u8': <type 'numpy.uint64'>, 'u4': <type 'numpy.uint32'>, 'int_': <type 'numpy.int64'>, 'cdouble': <type 'numpy.complex128'>, 'u1': <type 'numpy.uint8'>, 'complex128': <type 'numpy.complex128'>, 'u2': <type 'numpy.uint16'>, 'f8': <type 'numpy.float64'>, 'Datetime64': <type 'numpy.datetime64'>, 'ubyte': <type 'numpy.uint8'>, 'Int8': <type 'numpy.int8'>, 'B': <type 'numpy.uint8'>, 'uint0': <type 'numpy.uint64'>, 'F': <type 'numpy.complex64'>, 'bool_': <type 'numpy.bool_'>, 'uint8': <type 'numpy.uint8'>, 'c8': <type 'numpy.complex64'>, 'Int64': <type 'numpy.int64'>, 'int0': <type 'numpy.int64'>, 'Complex32': <type 'numpy.complex64'>, 'V': <type 'numpy.void'>, 'int8': <type 'numpy.int8'>, 'uint64': <type 'numpy.uint64'>, 'b': <type 'numpy.int8'>, 'f': <type 'numpy.float32'>, 'double': <type 'numpy.float64'>, 'UInt32': <type 'numpy.uint32'>, 'clongdouble': <type 'numpy.complex256'>, 'str': <type 'numpy.string_'>, 'timedelta_': <type 'numpy.timedelta64'>, 'f16': <type 'numpy.float128'>, 'f2': <type 'numpy.float16'>, 'datetime_': <type 'numpy.datetime64'>, 'f4': <type 'numpy.float32'>, 'int32': <type 'numpy.int32'>, 'int': <type 'numpy.int64'>, 'longdouble': <type 'numpy.float128'>, 'Complex128': <type 'numpy.complex256'>, 'single': <type 'numpy.float32'>, 'string': <type 'numpy.string_'>, 'q': <type 'numpy.int64'>, 'Int16': <type 'numpy.int16'>, 'Float64': <type 'numpy.float64'>, 'longcomplex': <type 'numpy.complex256'>, 'UInt16': <type 'numpy.uint16'>, 'bool': <type 'numpy.bool_'>, 'Float32': <type 'numpy.float32'>, 'd8': <type 'numpy.datetime64'>, 'string0': <type 'numpy.string_'>, 'longlong': <type 'numpy.int64'>, 'i8': <type 'numpy.int64'>, 'int16': <type 'numpy.int16'>, 'str_': <type 'numpy.string_'>, 'I': <type 'numpy.uint32'>, 'object': <type 'numpy.object_'>, 'M': <type 'numpy.datetime64'>, 'i4': <type 'numpy.int32'>, 'singlecomplex': <type 'numpy.complex64'>, 'Q': <type 'numpy.uint64'>, 'string_': <type 'numpy.string_'>, 'U': <type 'numpy.unicode_'>, 'a': <type 'numpy.string_'>, 'short': <type 'numpy.int16'>, 'e': <type 'numpy.float16'>, 'i': <type 'numpy.int32'>, 'clongfloat': <type 'numpy.complex256'>, 'm': <type 'numpy.timedelta64'>, 'Object0': <type 'numpy.object_'>, 'int64': <type 'numpy.int64'>, 'Float128': <type 'numpy.float128'>, 'i2': <type 'numpy.int16'>}, 'xticks': <function xticks at 0x33480c8>, 'hist': <function hist at 0x3349488>, 'timeinteger': <type 'numpy.timeinteger'>, 'NINF': -inf, 'min_scalar_type': <built-in function min_scalar_type>, 'geometric': <built-in method geometric of mtrand.RandomState object at 0x7f1382d162d0>, 'sort_complex': <function sort_complex at 0x250ae60>, 'nested_iters': <built-in function nested_iters>, 'concatenate': <built-in function concatenate>, 'ERR_DEFAULT2': 521, 'vdot': <built-in function vdot>, 'bincount': <built-in function bincount>, 'num2epoch': <function num2epoch at 0x2ead5f0>, 'sctypes': {'int': [<type 'numpy.int8'>, <type 'numpy.int16'>, <type 'numpy.int32'>, <type 'numpy.int64'>], 'float': [<type 'numpy.float16'>, <type 'numpy.float32'>, <type 'numpy.float64'>, <type 'numpy.float128'>], 'uint': [<type 'numpy.uint8'>, <type 'numpy.uint16'>, <type 'numpy.uint32'>, <type 'numpy.uint64'>], 'complex': [<type 'numpy.complex64'>, <type 'numpy.complex128'>, <type 'numpy.complex256'>], 'others': [<type 'bool'>, <type 'object'>, <type 'str'>, <type 'unicode'>, <type 'numpy.void'>]}, 'transpose': <function transpose at 0x24409b0>, 'add_newdocs': <module 'numpy.add_newdocs' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/add_newdocs.pyc'>, 'detrend_linear': <function detrend_linear at 0x2bc9de8>, 'corrcoef': <function corrcoef at 0x25076e0>, 'fromregex': <function fromregex at 0x2592c08>, 'vector_lengths': <function vector_lengths at 0x2bd12a8>, 'vectorize': <class 'numpy.lib.function_base.vectorize'>, 'set_printoptions': <function set_printoptions at 0x244bc08>, 'trim_zeros': <function trim_zeros at 0x250aed8>, 'WEEKLY': 2, 'cos': <ufunc 'cos'>, 'vlines': <function vlines at 0x3349ed8>, 'detrend': <function detrend at 0x2bc9c08>, 'arccosh': <ufunc 'arccosh'>, 'DateFormatter': <class matplotlib.dates.DateFormatter at 0x2e5d9a8>, 'equal': <ufunc 'equal'>, 'display': <function display at 0x337ee60>, 'cumprod': <function cumprod at 0x244b758>, 'LinAlgError': <class 'numpy.linalg.linalg.LinAlgError'>, 'float_': <type 'numpy.float64'>, 'deprecate': <function deprecate at 0x24fc938>, 'vander': <function vander at 0x24fc0c8>, 'geterrobj': <built-in function geterrobj>, 'interactive': <function interactive at 0x271f6e0>, 'clf': <function clf at 0x33470c8>, 'prepca': <function prepca at 0x2bce758>, 'wald': <built-in method wald of mtrand.RandomState object at 0x7f1382d162d0>, 'fromiter': <built-in function fromiter>, 'prctile_rank': <function prctile_rank at 0x2bcea28>, 'cm': <module 'matplotlib.cm' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/cm.pyc'>, 'tril': <function tril at 0x24e8f50>, 'poly': <function poly at 0x2567398>, 'loglog': <function loglog at 0x33495f0>, 'bitwise_or': <ufunc 'bitwise_or'>, 'figtext': <function figtext at 0x3347398>, 'norm_flat': <function norm_flat at 0x2bcf668>, '_i3': u'from sklearn.ensemble import RandomForestClassifier', 'tricontourf': <function tricontourf at 0x3349d70>, 'diff': <function diff at 0x250ac80>, 'cohere': <function cohere at 0x3348f50>, 'normpdf': <function normpdf at 0x2bce500>, 'AutoLocator': <class matplotlib.ticker.AutoLocator at 0x2b2c3f8>, 'Rectangle': <class 'matplotlib.patches.Rectangle'>, 'quit': <IPython.core.autocall.ExitAutocall object at 0x2006c50>, 'get_include': <function get_include at 0x24fc7d0>, 'pv': <function pv at 0x2593500>, 'tensordot': <function tensordot at 0x23eae60>, 'piecewise': <function piecewise at 0x250aaa0>, 'rfftn': <function rfftn at 0x259d398>, 'invert': <ufunc 'invert'>, 'UFUNC_PYVALS_NAME': 'UFUNC_PYVALS', 'fftpack_lite': <module 'numpy.fft.fftpack_lite' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/fft/fftpack_lite.so'>, 'sinc': <function sinc at 0x2507b90>, 'SHIFT_INVALID': 9, 'ubyte': <type 'numpy.uint8'>, 'axis': <function axis at 0x3347cf8>, 'matrix_rank': <function matrix_rank at 0x2576320>, 'degrees': <ufunc 'degrees'>, 'pi': 3.141592653589793, 'numpy': <module 'numpy' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/__init__.pyc'>, '__doc__': 'Automatically created module for IPython interactive environment', 'empty': <built-in function empty>, 'find_common_type': <function find_common_type at 0x23ea230>, 'random_sample': <built-in method random_sample of mtrand.RandomState object at 0x7f1382d162d0>, 'longest_ones': <function longest_ones at 0x2bce6e0>, 'irfft2': <function irfft2 at 0x259d500>, 'arcsin': <ufunc 'arcsin'>, 'sctypeNA': {<type 'numpy.unicode_'>: 'Unicode0', 'd8': 'Datetime64', 'Int32': <type 'numpy.int32'>, 'Complex64': <type 'numpy.complex128'>, <type 'numpy.void'>: 'Void0', <type 'numpy.int8'>: 'Int8', 'c16': 'Complex64', 'D': 'Complex64', 'H': 'UInt16', 'L': 'UInt64', <type 'numpy.int16'>: 'Int16', <type 'numpy.datetime64'>: 'Datetime64', 'd': 'Float64', 't8': 'Timedelta64', 'h': 'Int16', 'l': 'Int64', <type 'numpy.int32'>: 'Int32', <type 'numpy.timedelta64'>: 'Timedelta64', 'c32': 'Complex128', <type 'numpy.int64'>: 'Int64', 'Timedelta64': <type 'numpy.timedelta64'>, <type 'numpy.float16'>: 'Float16', 'b1': 'Bool', 'String0': <type 'numpy.string_'>, <type 'numpy.int64'>: 'Int64', 'I': 'UInt32', <type 'numpy.uint8'>: 'UInt8', '?': 'Bool', 'Void0': <type 'numpy.void'>, 'G': 'Complex128', 'O': 'Object0', 'UInt8': <type 'numpy.uint8'>, 'S': 'String0', <type 'numpy.uint16'>: 'UInt16', 'UInt64': <type 'numpy.uint64'>, 'g': 'Float128', <type 'numpy.uint32'>: 'UInt32', 'Float16': <type 'numpy.float16'>, <type 'numpy.uint64'>: 'UInt64', 'Bool': <type 'numpy.bool_'>, <type 'numpy.bool_'>: 'Bool', <type 'numpy.uint64'>: 'UInt64', 'u8': <type 'numpy.uint64'>, 'u4': <type 'numpy.uint32'>, 'Unicode0': <type 'numpy.unicode_'>, 'u1': <type 'numpy.uint8'>, 'u2': <type 'numpy.uint16'>, 'Datetime64': <type 'numpy.datetime64'>, 'Int8': <type 'numpy.int8'>, <type 'numpy.float32'>: 'Float32', 'B': 'UInt8', 'F': 'Complex32', 'c8': 'Complex32', 'Int64': <type 'numpy.int64'>, 'Complex32': <type 'numpy.complex64'>, 'V': 'Void0', <type 'numpy.float64'>: 'Float64', 'b': 'Int8', 'f': 'Float32', 'UInt32': <type 'numpy.uint32'>, <type 'numpy.float128'>: 'Float128', 'f16': 'Float128', 'f2': 'Float16', 'f4': 'Float32', 'f8': 'Float64', <type 'numpy.complex64'>: 'Complex32', 'Complex128': <type 'numpy.complex256'>, 'Object0': <type 'numpy.object_'>, 'Int16': <type 'numpy.int16'>, <type 'numpy.complex128'>: 'Complex64', 'Float64': <type 'numpy.float64'>, 'UInt16': <type 'numpy.uint16'>, 'Float32': <type 'numpy.float32'>, <type 'numpy.complex256'>: 'Complex128', 'i8': <type 'numpy.int64'>, 'i1': <type 'numpy.int8'>, 'i2': <type 'numpy.int16'>, 'M': 'Datetime64', 'i4': <type 'numpy.int32'>, 'Q': 'UInt64', 'U': 'Unicode0', <type 'numpy.object_'>: 'Object0', 'e': 'Float16', 'i': 'Int32', 'm': 'Timedelta64', 'q': 'Int64', <type 'numpy.string_'>: 'String0', 'Float128': <type 'numpy.float128'>}, 'imag': <function imag at 0x24e7c80>, 'sctype2char': <function sctype2char at 0x23e9500>, 'singlecomplex': <type 'numpy.complex64'>, 'SHIFT_DIVIDEBYZERO': 0, 'sort': <function sort at 0x2440a28>, 'standard_t': <built-in method standard_t of mtrand.RandomState object at 0x7f1382d162d0>, 'csv2rec': <function csv2rec at 0x2bcfe60>, 'MachAr': <class 'numpy.core.machar.MachAr'>, 'apply_along_axis': <function apply_along_axis at 0x2512230>, 'new_figure_manager': <function new_figure_manager at 0x308c230>, 'tight_layout': <function tight_layout at 0x3347b90>, 'array_repr': <function array_repr at 0x2440488>, 'reciprocal': <ufunc 'reciprocal'>, 'frompyfunc': <built-in function frompyfunc>, 'rot90': <function rot90 at 0x24e8cf8>, 'dstack': <function dstack at 0x2512410>, 'float64': <type 'numpy.float64'>, 'Annotation': <class 'matplotlib.text.Annotation'>, 'colorbar': <function colorbar at 0x3348578>, 'cast': {<type 'numpy.int64'>: <function <lambda> at 0x23e9578>, <type 'numpy.uint64'>: <function <lambda> at 0x23e95f0>, <type 'numpy.complex64'>: <function <lambda> at 0x23e9668>, <type 'numpy.unicode_'>: <function <lambda> at 0x23e96e0>, <type 'numpy.float16'>: <function <lambda> at 0x23e9758>, <type 'numpy.bool_'>: <function <lambda> at 0x23e97d0>, <type 'numpy.int64'>: <function <lambda> at 0x23e9848>, <type 'numpy.uint64'>: <function <lambda> at 0x23e98c0>, <type 'numpy.complex128'>: <function <lambda> at 0x23e9938>, <type 'numpy.void'>: <function <lambda> at 0x23e99b0>, <type 'numpy.int8'>: <function <lambda> at 0x23e9a28>, <type 'numpy.uint8'>: <function <lambda> at 0x23e9aa0>, <type 'numpy.float32'>: <function <lambda> at 0x23e9b18>, <type 'numpy.complex256'>: <function <lambda> at 0x23e9b90>, <type 'numpy.int16'>: <function <lambda> at 0x23e9c08>, <type 'numpy.uint16'>: <function <lambda> at 0x23e9c80>, <type 'numpy.float64'>: <function <lambda> at 0x23e9cf8>, <type 'numpy.object_'>: <function <lambda> at 0x23e9d70>, <type 'numpy.datetime64'>: <function <lambda> at 0x23e9de8>, <type 'numpy.int32'>: <function <lambda> at 0x23e9e60>, <type 'numpy.uint32'>: <function <lambda> at 0x23e9ed8>, <type 'numpy.float128'>: <function <lambda> at 0x23e9f50>, <type 'numpy.string_'>: <function <lambda> at 0x23ea050>, <type 'numpy.timedelta64'>: <function <lambda> at 0x23ea0c8>}, 'gumbel': <built-in method gumbel of mtrand.RandomState object at 0x7f1382d162d0>, 'rfft2': <function rfft2 at 0x259d410>, 'eig': <function eig at 0x2576140>, 'packbits': <built-in function packbits>, 'issctype': <function issctype at 0x23e91b8>, 'mgrid': <numpy.lib.index_tricks.nd_grid object at 0x250e8d0>, 'vonmises': <built-in method vonmises of mtrand.RandomState object at 0x7f1382d162d0>, 'ushort': <type 'numpy.uint16'>, 'Polygon': <class 'matplotlib.patches.Polygon'>, 'helper': <module 'numpy.fft.helper' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/fft/helper.pyc'>, 'empty_like': <built-in function empty_like>, 'longdouble': <type 'numpy.float128'>, 'signbit': <ufunc 'signbit'>, 'cond': <function cond at 0x25762a8>, 'chisquare': <built-in method chisquare of mtrand.RandomState object at 0x7f1382d162d0>, 'conj': <ufunc 'conjugate'>, 'asmatrix': <function asmatrix at 0x250c320>, 'floating': <type 'numpy.floating'>, 'flatiter': <type 'numpy.flatiter'>, 'bitwise_xor': <ufunc 'bitwise_xor'>, 'WeekdayLocator': <class matplotlib.dates.WeekdayLocator at 0x2eae050>, 'fabs': <ufunc 'fabs'>, 'Locator': <class matplotlib.ticker.Locator at 0x2adff58>, 'generic': <type 'numpy.generic'>, 'reshape': <function reshape at 0x2440758>, 'NaN': nan, 'cross': <function cross at 0x24400c8>, 'sqrt': <ufunc 'sqrt'>, 'show_config': <function show at 0x22bbaa0>, 'longcomplex': <type 'numpy.complex256'>, 'poly_between': <function poly_between at 0x2bd1050>, 'recfromcsv': <function recfromcsv at 0x2592e60>, 'split': <function split at 0x2512578>, 'evaluate': <module 'ray.evaluate' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/evaluate.pyc'>, 'getp': <function getp at 0x28ad8c0>, 'floor_divide': <ufunc 'floor_divide'>, '__version__': '1.6.2', 'format_parser': <class numpy.core.records.format_parser at 0x2455668>, 'nextafter': <ufunc 'nextafter'>, 'exponential': <built-in method exponential of mtrand.RandomState object at 0x7f1382d162d0>, 'dedent': <function dedent at 0x2710848>, 'polyval': <function polyval at 0x25768c0>, 'infty': inf, 'flipud': <function flipud at 0x24e8c80>, 'i0': <function i0 at 0x2507aa0>, 'permutation': <built-in method permutation of mtrand.RandomState object at 0x7f1382d162d0>, 'morpho': <module 'ray.morpho' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/morpho.pyc'>, 'disconnect': <function disconnect at 0x3347050>, 'iscomplexobj': <function iscomplexobj at 0x24e7de8>, 'sys': <module 'sys' (built-in)>, 'ion': <function ion at 0x32ea938>, 'setdiff1d': <function setdiff1d at 0x250a7d0>, 'psd': <function psd at 0x33498c0>, 'mafromtxt': <function mafromtxt at 0x2592d70>, 'bartlett': <function bartlett at 0x25077d0>, 'polydiv': <function polydiv at 0x2576aa0>, 'drange': <function drange at 0x2eab050>, 'safe_eval': <function safe_eval at 0x250a050>, 'ifft': <function ifft at 0x2593de8>, 'cov': <function cov at 0x2507578>, 'greater_equal': <ufunc 'greater_equal'>, 'Tester': <class 'numpy.testing.nosetester.NoseTester'>, 'trapz': <function trapz at 0x2507de8>, 'PINF': inf, 'rec_drop_fields': <function rec_drop_fields at 0x2bcfb90>, 'recfromtxt': <function recfromtxt at 0x2592de8>, 'setp': <function setp at 0x32eac80>, 'In': ['', u'import sys', u"sys.path.insert(0, '/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/')", u'from sklearn.ensemble import RandomForestClassifier', u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=16, shared=True, compute_importances=True)', u'from ray import *', u"dat5 = classify.load_training_data_from_disk('training/multi-channel-graph-e05-5.trdat.h5')", u'rf = rf.fit(dat5[0], dat5[1][:, 0])', u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=2, shared=True, compute_importances=True)', u'rf = rf.fit(dat5[0], dat5[1][:, 0])'], 'grid': <function grid at 0x334a140>, 'standard_normal': <built-in method standard_normal of mtrand.RandomState object at 0x7f1382d162d0>, 'RankWarning': <class 'numpy.lib.polynomial.RankWarning'>, 'ascontiguousarray': <function ascontiguousarray at 0x23ea9b0>, 'load': <function load at 0x2592398>, '_i4': u'rf = RandomForestClassifier(100, max_depth=20, n_jobs=16, shared=True, compute_importances=True)', 'hexbin': <function hexbin at 0x3349410>, 'Arrow': <class 'matplotlib.patches.Arrow'>, 'less': <ufunc 'less'>, 'putmask': <built-in function putmask>, 'UFUNC_BUFSIZE_DEFAULT': 8192, 'get_state': <built-in method get_state of mtrand.RandomState object at 0x7f1382d162d0>, 'NAN': nan, 'typeDict': {0: <type 'numpy.bool_'>, 1: <type 'numpy.int8'>, 2: <type 'numpy.uint8'>, 3: <type 'numpy.int16'>, 4: <type 'numpy.uint16'>, 5: <type 'numpy.int32'>, 6: <type 'numpy.uint32'>, 7: <type 'numpy.int64'>, 8: <type 'numpy.uint64'>, 9: <type 'numpy.int64'>, 10: <type 'numpy.uint64'>, 11: <type 'numpy.float32'>, 12: <type 'numpy.float64'>, 13: <type 'numpy.float128'>, 14: <type 'numpy.complex64'>, 15: <type 'numpy.complex128'>, 16: <type 'numpy.complex256'>, 17: <type 'numpy.object_'>, 18: <type 'numpy.string_'>, 19: <type 'numpy.unicode_'>, 20: <type 'numpy.void'>, 21: <type 'numpy.datetime64'>, 'unicode': <type 'numpy.unicode_'>, 23: <type 'numpy.float16'>, 'cfloat': <type 'numpy.complex128'>, 'longfloat': <type 'numpy.float128'>, 'Int32': <type 'numpy.int32'>, 'Complex64': <type 'numpy.complex128'>, 'unicode_': <type 'numpy.unicode_'>, 'complex': <type 'numpy.complex128'>, 'timedelta64': <type 'numpy.timedelta64'>, 'uint16': <type 'numpy.uint16'>, 'c16': <type 'numpy.complex128'>, 'float32': <type 'numpy.float32'>, 'complex256': <type 'numpy.complex256'>, 'D': <type 'numpy.complex128'>, 'H': <type 'numpy.uint16'>, 'void': <type 'numpy.void'>, 'unicode0': <type 'numpy.unicode_'>, 'L': <type 'numpy.uint64'>, 'P': <type 'numpy.uint64'>, 'half': <type 'numpy.float16'>, 'void0': <type 'numpy.void'>, 'd': <type 'numpy.float64'>, 't8': <type 'numpy.timedelta64'>, 'h': <type 'numpy.int16'>, 'l': <type 'numpy.int64'>, 'p': <type 'numpy.int64'>, 'c32': <type 'numpy.complex256'>, 22: <type 'numpy.timedelta64'>, 'M8[us]': <type 'numpy.datetime64'>, 'O8': <type 'numpy.object_'>, 'Timedelta64': <type 'numpy.timedelta64'>, 'object0': <type 'numpy.object_'>, 'b1': <type 'numpy.bool_'>, 'float128': <type 'numpy.float128'>, 'String0': <type 'numpy.string_'>, 'float16': <type 'numpy.float16'>, 'ulonglong': <type 'numpy.uint64'>, 'm8[us]': <type 'numpy.timedelta64'>, 'i1': <type 'numpy.int8'>, 'uint32': <type 'numpy.uint32'>, '?': <type 'numpy.bool_'>, 'Void0': <type 'numpy.void'>, 'complex64': <type 'numpy.complex64'>, 'G': <type 'numpy.complex256'>, 'O': <type 'numpy.object_'>, 'UInt8': <type 'numpy.uint8'>, 'S': <type 'numpy.string_'>, 'byte': <type 'numpy.int8'>, 'UInt64': <type 'numpy.uint64'>, 'g': <type 'numpy.float128'>, 'float64': <type 'numpy.float64'>, 'ushort': <type 'numpy.uint16'>, 'float_': <type 'numpy.float64'>, 'uint': <type 'numpy.uint64'>, 'object_': <type 'numpy.object_'>, 'Float16': <type 'numpy.float16'>, 'complex_': <type 'numpy.complex128'>, 'Unicode0': <type 'numpy.unicode_'>, 'uintp': <type 'numpy.uint64'>, 'intc': <type 'numpy.int32'>, 'csingle': <type 'numpy.complex64'>, 'datetime64': <type 'numpy.datetime64'>, 'float': <type 'numpy.float64'>, 'bool8': <type 'numpy.bool_'>, 'Bool': <type 'numpy.bool_'>, 'intp': <type 'numpy.int64'>, 'uintc': <type 'numpy.uint32'>, 'bytes_': <type 'numpy.string_'>, 'u8': <type 'numpy.uint64'>, 'u4': <type 'numpy.uint32'>, 'int_': <type 'numpy.int64'>, 'cdouble': <type 'numpy.complex128'>, 'u1': <type 'numpy.uint8'>, 'complex128': <type 'numpy.complex128'>, 'u2': <type 'numpy.uint16'>, 'f8': <type 'numpy.float64'>, 'Datetime64': <type 'numpy.datetime64'>, 'ubyte': <type 'numpy.uint8'>, 'Int8': <type 'numpy.int8'>, 'B': <type 'numpy.uint8'>, 'uint0': <type 'numpy.uint64'>, 'F': <type 'numpy.complex64'>, 'bool_': <type 'numpy.bool_'>, 'uint8': <type 'numpy.uint8'>, 'c8': <type 'numpy.complex64'>, 'Int64': <type 'numpy.int64'>, 'int0': <type 'numpy.int64'>, 'Complex32': <type 'numpy.complex64'>, 'V': <type 'numpy.void'>, 'int8': <type 'numpy.int8'>, 'uint64': <type 'numpy.uint64'>, 'b': <type 'numpy.int8'>, 'f': <type 'numpy.float32'>, 'double': <type 'numpy.float64'>, 'UInt32': <type 'numpy.uint32'>, 'clongdouble': <type 'numpy.complex256'>, 'str': <type 'numpy.string_'>, 'timedelta_': <type 'numpy.timedelta64'>, 'f16': <type 'numpy.float128'>, 'f2': <type 'numpy.float16'>, 'datetime_': <type 'numpy.datetime64'>, 'f4': <type 'numpy.float32'>, 'int32': <type 'numpy.int32'>, 'int': <type 'numpy.int64'>, 'longdouble': <type 'numpy.float128'>, 'Complex128': <type 'numpy.complex256'>, 'single': <type 'numpy.float32'>, 'string': <type 'numpy.string_'>, 'q': <type 'numpy.int64'>, 'Int16': <type 'numpy.int16'>, 'Float64': <type 'numpy.float64'>, 'longcomplex': <type 'numpy.complex256'>, 'UInt16': <type 'numpy.uint16'>, 'bool': <type 'numpy.bool_'>, 'Float32': <type 'numpy.float32'>, 'd8': <type 'numpy.datetime64'>, 'string0': <type 'numpy.string_'>, 'longlong': <type 'numpy.int64'>, 'i8': <type 'numpy.int64'>, 'int16': <type 'numpy.int16'>, 'str_': <type 'numpy.string_'>, 'I': <type 'numpy.uint32'>, 'object': <type 'numpy.object_'>, 'M': <type 'numpy.datetime64'>, 'i4': <type 'numpy.int32'>, 'singlecomplex': <type 'numpy.complex64'>, 'Q': <type 'numpy.uint64'>, 'string_': <type 'numpy.string_'>, 'U': <type 'numpy.unicode_'>, 'a': <type 'numpy.string_'>, 'short': <type 'numpy.int16'>, 'e': <type 'numpy.float16'>, 'i': <type 'numpy.int32'>, 'clongfloat': <type 'numpy.complex256'>, 'm': <type 'numpy.timedelta64'>, 'Object0': <type 'numpy.object_'>, 'int64': <type 'numpy.int64'>, 'Float128': <type 'numpy.float128'>, 'i2': <type 'numpy.int16'>}, 'shape': <function shape at 0x2440f50>, 'setbufsize': <function setbufsize at 0x244cd70>, 'cfloat': <type 'numpy.complex128'>, 'RAISE': 2, 'autogen_docstring': <function autogen_docstring at 0x3348938>, 'detrend_mean': <function detrend_mean at 0x2bc9cf8>, 'isscalar': <function isscalar at 0x244c7d0>, 'SubplotTool': <class 'matplotlib.widgets.SubplotTool'>, 'get_current_fig_manager': <function get_current_fig_manager at 0x32eae60>, 'character': <type 'numpy.character'>, 'bench': <bound method NoseTester.test of <numpy.testing.nosetester.NoseTester object at 0x256ea10>>, 'source': <function source at 0x24fcde8>, 'add': <ufunc 'add'>, 'uint16': <type 'numpy.uint16'>, 'ndenumerate': <class 'numpy.lib.index_tricks.ndenumerate'>, 'hlines': <function hlines at 0x3349500>, 'ufunc': <type 'numpy.ufunc'>, 'save': <function save at 0x25928c0>, 'multinomial': <built-in method multinomial of mtrand.RandomState object at 0x7f1382d162d0>, 'ravel': <function ravel at 0x2440e60>, 'float32': <type 'numpy.float32'>, 'real': <function real at 0x24e7c08>, 'int32': <type 'numpy.int32'>, 'path_length': <function path_length at 0x2bd1398>, 'tril_indices': <function tril_indices at 0x24fc230>, 'around': <function around at 0x244b938>, 'cbook': <module 'matplotlib.cbook' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/cbook.pyc'>, 'lexsort': <built-in function lexsort>, 'get_scale_names': <function get_scale_names at 0x2b2f488>, 'complex_': <type 'numpy.complex128'>, 'ComplexWarning': <class 'numpy.core.numeric.ComplexWarning'>, 'datestr2num': <function datestr2num at 0x2ea7c80>, 'np': <module 'numpy' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/__init__.pyc'>, 'unicode0': <type 'numpy.unicode_'>, 'ipmt': <function ipmt at 0x2593410>, 'issubclass_': <function issubclass_ at 0x23e92a8>, 'atleast_3d': <function atleast_3d at 0x2472320>, 'isneginf': <function isneginf at 0x24e7b18>, 'average': <function average at 0x250a9b0>, 'integer': <type 'numpy.integer'>, 'unique': <function unique at 0x250a578>, 'mod': <ufunc 'remainder'>, '_sh': <module 'IPython.core.shadowns' from '/usr/lib/python2.7/site-packages/ipython-0.12.1-py2.7.egg/IPython/core/shadowns.pyc'>, 'bitwise_not': <ufunc 'invert'>, 'plot_date': <function plot_date at 0x3349848>, 'laplace': <built-in method laplace of mtrand.RandomState object at 0x7f1382d162d0>, 'getbufsize': <function getbufsize at 0x244cde8>, 'isfortran': <function isfortran at 0x23eab18>, 'get_printoptions': <function get_printoptions at 0x244bc80>, 'asarray_chkfinite': <function asarray_chkfinite at 0x250aa28>, 'rcParams': {'axes.formatter.use_locale': False, 'figure.subplot.right': 0.9, 'mathtext.cal': 'cursive', 'font.fantasy': ['Comic Sans MS', 'Chicago', 'Charcoal', 'ImpactWestern', 'fantasy'], 'xtick.minor.pad': 4, 'tk.pythoninspect': False, 'image.aspect': 'equal', 'font.cursive': ['Apple Chancery', 'Textile', 'Zapf Chancery', 'Sand', 'cursive'], 'figure.subplot.hspace': 0.2, 'keymap.fullscreen': 'f', 'examples.directory': '', 'xtick.direction': 'in', 'axes.facecolor': 'w', 'mathtext.fontset': 'cm', 'ytick.direction': 'in', 'keymap.pan': 'p', 'path.snap': True, 'axes.axisbelow': False, 'lines.markersize': 6, 'figure.dpi': 80, 'text.usetex': False, 'image.origin': 'upper', 'patch.edgecolor': 'k', 'legend.labelspacing': 0.5, 'ps.useafm': False, 'mathtext.bf': 'serif:bold', 'lines.solid_joinstyle': 'round', 'font.monospace': ['Bitstream Vera Sans Mono', 'DejaVu Sans Mono', 'Andale Mono', 'Nimbus Mono L', 'Courier New', 'Courier', 'Fixed', 'Terminal', 'monospace'], 'xtick.minor.size': 2, 'axes.formatter.limits': [-7, 7], 'figure.subplot.wspace': 0.2, 'savefig.edgecolor': 'w', 'image.cmap': 'jet', 'lines.marker': 'None', 'tk.window_focus': False, 'backend.qt4': 'PyQt4', 'font.serif': ['Bitstream Vera Serif', 'DejaVu Serif', 'New Century Schoolbook', 'Century Schoolbook L', 'Utopia', 'ITC Bookman', 'Bookman', 'Nimbus Roman No9 L', 'Times New Roman', 'Times', 'Palatino', 'Charter', 'serif'], 'savefig.facecolor': 'w', 'ytick.minor.size': 2, 'font.stretch': 'normal', 'text.dvipnghack': None, 'ytick.color': 'k', 'svg.fonttype': 'path', 'lines.linestyle': '-', 'xtick.color': 'k', 'xtick.major.pad': 4, 'patch.facecolor': 'b', 'figure.figsize': [8.0, 6.0], 'axes.linewidth': 1.0, 'keymap.zoom': 'o', 'legend.handletextpad': 0.8, 'mathtext.fallback_to_cm': True, 'lines.linewidth': 1.0, 'savefig.dpi': 100, 'verbose.fileo': 'sys.stdout', 'svg.image_noscale': False, 'docstring.hardcopy': False, 'font.size': 12, 'ps.fonttype': 3, 'path.simplify': True, 'keymap.all_axes': 'a', 'polaraxes.grid': True, 'text.hinting': True, 'pdf.compression': 6, 'grid.linewidth': 0.5, 'legend.frameon': True, 'figure.autolayout': False, 'figure.facecolor': '0.75', 'ps.usedistiller': False, 'legend.isaxes': True, 'figure.edgecolor': 'w', 'mathtext.tt': 'monospace', 'contour.negative_linestyle': 'dashed', 'image.interpolation': 'bilinear', 'lines.markeredgewidth': 0.5, 'keymap.home': ['h', 'r', 'home'], 'axes3d.grid': True, 'axes.edgecolor': 'k', 'legend.shadow': False, 'axes.titlesize': 'large', 'backend': 'Qt4Agg', 'xtick.major.size': 4, 'keymap.xscale': ['k', 'L'], 'legend.fontsize': 'large', 'lines.solid_capstyle': 'projecting', 'mathtext.it': 'serif:italic', 'keymap.save': 's', 'font.variant': 'normal', 'toolbar': 'toolbar2', 'xtick.labelsize': 'medium', 'axes.unicode_minus': True, 'ps.distiller.res': 6000, 'axes.labelweight': 'normal', 'pdf.fonttype': 3, 'patch.linewidth': 1.0, 'pdf.inheritcolor': False, 'axes.color_cycle': ['b', 'g', 'r', 'c', 'm', 'y', 'k'], 'lines.dash_capstyle': 'butt', 'lines.color': 'b', 'figure.subplot.top': 0.9, 'pdf.use14corefonts': False, 'legend.markerscale': 1.0, 'patch.antialiased': True, 'font.style': 'normal', 'keymap.forward': ['right', 'v'], 'backend_fallback': True, 'legend.fancybox': False, 'grid.linestyle': ':', 'savefig.extension': 'auto', 'text.color': 'k', 'mathtext.rm': 'serif', 'legend.loc': 'upper right', 'interactive': True, 'cairo.format': 'png', 'savefig.orientation': 'portrait', 'svg.image_inline': True, 'ytick.major.size': 4, 'axes.grid': False, 'plugins.directory': '.matplotlib_plugins', 'grid.color': 'k', 'timezone': 'UTC', 'ytick.major.pad': 4, 'legend.borderpad': 0.4, 'examples.download': True, 'lines.dash_joinstyle': 'round', 'datapath': '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/mpl-data', 'lines.antialiased': True, 'text.latex.unicode': False, 'legend.handleheight': 0.7, 'image.lut': 256, 'figure.subplot.bottom': 0.1, 'text.latex.preamble': [''], 'legend.numpoints': 2, 'legend.handlelength': 2.0, 'keymap.grid': 'g', 'font.sans-serif': ['Bitstream Vera Sans', 'DejaVu Sans', 'Lucida Grande', 'Verdana', 'Geneva', 'Lucid', 'Arial', 'Helvetica', 'Avant Garde', 'sans-serif'], 'axes.labelcolor': 'k', 'font.family': 'sans-serif', 'axes.labelsize': 'medium', 'ytick.minor.pad': 4, 'legend.borderaxespad': 0.5, 'mathtext.sf': 'sans\\-serif', 'axes.hold': True, 'verbose.level': 'silent', 'mathtext.default': 'it', 'figure.subplot.left': 0.125, 'legend.columnspacing': 2.0, 'text.latex.preview': False, 'font.weight': 'normal', 'keymap.yscale': 'l', 'image.resample': False, 'agg.path.chunksize': 0, 'path.simplify_threshold': 0.1111111111111111, 'ytick.labelsize': 'medium', 'ps.papersize': 'letter', 'svg.embed_char_paths': True, 'keymap.back': ['left', 'c', 'backspace']}, 'pcolormesh': <function pcolormesh at 0x33496e0>, 'barh': <function barh at 0x3348de8>, 'sign': <ufunc 'sign'>, '_dh': [u'/groups/chklovskii/home/nuneziglesiasj/data/cropped_5um3_larva_fib_10x10x10nm/cl2'], 'svd': <function svd at 0x2576230>, 'findobj': <function findobj at 0x32ea320>, 'spring': <function spring at 0x334aaa0>, 'in1d': <function in1d at 0x250a6e0>, 'interp': <function interp at 0x250acf8>, 'draw': <function draw at 0x3347140>, 'ginput': <function ginput at 0x33472a8>, 'rcdefaults': <function rcdefaults at 0x32eab18>, 'rfft': <function rfft at 0x2593e60>, 'hypot': <ufunc 'hypot'>, 'logical_and': <ufunc 'logical_and'>, 'rrule': <class dateutil.rrule.rrule at 0x2e5d2c0>, 'table': <function table at 0x334a230>, 'diagflat': <function diagflat at 0x24e8e60>, 'float128': <type 'numpy.float128'>, 'matshow': <function matshow at 0x33486e0>, 'isfinite': <ufunc 'isfinite'>, 'MINUTELY': 5, 'byte_bounds': <function byte_bounds at 0x24fcb18>, 'iinfo': <class numpy.core.getlimits.iinfo at 0x24559a8>, 'kaiser': <function kaiser at 0x2507b18>, 'ifftshift': <function ifftshift at 0x259d668>, 'inside_poly': <function inside_poly at 0x2bd0ed8>, 'warnings': <module 'warnings' from '/usr/lib64/python2.7/warnings.pyc'>, 'is_closed_polygon': <function is_closed_polygon at 0x2bd10c8>, 'polysub': <function polysub at 0x25769b0>, 'exit': <IPython.core.autocall.ExitAutocall object at 0x2006c50>, 'ifftn': <function ifftn at 0x259d230>, 'fromfile': <built-in function fromfile>, 'prod': <function prod at 0x244b6e0>, 'nanmax': <function nanmax at 0x2507398>, 'LinearLocator': <class matplotlib.ticker.LinearLocator at 0x2b2c188>, 'tensorinv': <function tensorinv at 0x2567d70>, 'plt': <module 'matplotlib.pyplot' from '/usr/lib/python2.7/site-packages/matplotlib-1.1.0-py2.7-linux-x86_64.egg/matplotlib/pyplot.pyc'>, 'seterrobj': <built-in function seterrobj>, 'power': <ufunc 'power'>, 'array_split': <function array_split at 0x2512500>, 'zipf': <built-in method zipf of mtrand.RandomState object at 0x7f1382d162d0>, 'stem': <function stem at 0x3349c08>, 'ioff': <function ioff at 0x32ea8c0>, 'step': <function step at 0x3349c80>, 'percentile': <function percentile at 0x2507cf8>, 'hsv': <function hsv at 0x334a8c0>, 'axhspan': <function axhspan at 0x3348c08>, 'FPE_DIVIDEBYZERO': 1, '__name__': '__main__', 'subtract': <ufunc 'subtract'>, '_': '', 'mx2num': <function mx2num at 0x2ead668>, 'fft': <module 'numpy.fft' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/fft/__init__.pyc'>, 'frombuffer': <built-in function frombuffer>, 'iscomplex': <function iscomplex at 0x24e7cf8>, 'fill_betweenx': <function fill_betweenx at 0x3349398>, 'bivariate_normal': <function bivariate_normal at 0x2bceb90>, 'multivariate_normal': <built-in method multivariate_normal of mtrand.RandomState object at 0x7f1382d162d0>, 'add_docstring': <built-in function add_docstring>, 'argsort': <function argsort at 0x2440aa0>, 'fmin': <ufunc 'fmin'>, 'loadtxt': <function loadtxt at 0x2592b18>, 'bytes_': <type 'numpy.string_'>, 'ones_like': <ufunc 'ones_like'>, 'ScalarFormatter': <class matplotlib.ticker.ScalarFormatter at 0x2adfd50>, 'arcsinh': <ufunc 'arcsinh'>, 'CLIP': 0, 'exp_safe': <function exp_safe at 0x2bcf410>, '__builtin__': <module '__builtin__' (built-in)>, 'annotate': <function annotate at 0x334a320>, 'normalize': <class matplotlib.colors.Normalize at 0x27132c0>, 'intp': <type 'numpy.int64'>, 'standard_cauchy': <built-in method standard_cauchy of mtrand.RandomState object at 0x7f1382d162d0>, 'unpackbits': <built-in function unpackbits>, 'HOURLY': 4, 'arrow': <function arrow at 0x3348b18>, 'delete': <function delete at 0x2507f50>, 'Infinity': inf, 'log': <ufunc 'log'>, 'imio': <module 'ray.imio' from '/groups/chklovskii/home/nuneziglesiasj/projects/ray/ray/imio.pyc'>, 'cdouble': <type 'numpy.complex128'>, 'complex128': <type 'numpy.complex128'>, 'tick_params': <function tick_params at 0x334a488>, 'switch_backend': <function switch_backend at 0x32ea758>, 'round_': <function round_ at 0x244b9b0>, 'broadcast_arrays': <function broadcast_arrays at 0x2512b18>, 'inner': <built-in function inner>, 'var': <function var at 0x244bb18>, 'c_': <numpy.lib.index_tricks.CClass object at 0x250e990>, 'slopes': <function slopes at 0x2bd0de8>, 'log10': <ufunc 'log10'>, 'hypergeometric': <built-in method hypergeometric of mtrand.RandomState object at 0x7f1382d162d0>, 'uintp': <type 'numpy.uint64'>, 'unwrap': <function unwrap at 0x250ade8>, 'NullLocator': <class matplotlib.ticker.NullLocator at 0x2b2c120>, 'triangular': <built-in method triangular of mtrand.RandomState object at 0x7f1382d162d0>, 'noncentral_chisquare': <built-in method noncentral_chisquare of mtrand.RandomState object at 0x7f1382d162d0>, 'histogram': <function histogram at 0x250a8c0>, 'issubdtype': <function issubdtype at 0x23e9398>, 'maximum_sctype': <function maximum_sctype at 0x23e90c8>, 'flexible': <type 'numpy.flexible'>, 'movavg': <function movavg at 0x2bcef50>, 'squeeze': <function squeeze at 0x2440cf8>, 'int8': <type 'numpy.int8'>, 'cholesky': <function cholesky at 0x2567e60>, 'info': <function info at 0x24fcd70>, 'seterr': <function seterr at 0x244cc80>, 'argmin': <function argmin at 0x2440b90>, 'fignum_exists': <function has_fignum at 0x2bd3578>, 'genfromtxt': <function genfromtxt at 0x2592c80>, 'rec_append_fields': <function rec_append_fields at 0x2bcfb18>, 'maximum': <ufunc 'maximum'>, 'record': <class 'numpy.core.records.record'>, 'obj2sctype': <function obj2sctype at 0x23e9230>, 'clongdouble': <type 'numpy.complex256'>, 'sum': <function sum at 0x244b140>, 'timedelta_': <type 'numpy.timedelta64'>, 'isrealobj': <function isrealobj at 0x24e7e60>, 'log1p': <ufunc 'log1p'>, '_oh': {}, 'flatten': <function flatten at 0x2711aa0>, 'YEARLY': 0, 'digitize': <built-in function digitize>, 'clongfloat': <type 'numpy.complex256'>, 'ylim': <function ylim at 0x3347ed8>, 'yscale': <function yscale at 0x3348050>, 'inv': <function inv at 0x2567de8>, 'ediff1d': <function ediff1d at 0x24fc758>, 'pie': <function pie at 0x3349758>, 'char': <module 'numpy.core.defchararray' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/core/defchararray.pyc'>, 'single': <type 'numpy.float32'>, 'isposinf': <function isposinf at 0x24e7aa0>, 'set_cmap': <function set_cmap at 0x3348668>, 'ScalarType': (<type 'int'>, <type 'float'>, <type 'complex'>, <type 'long'>, <type 'bool'>, <type 'str'>, <type 'unicode'>, <type 'buffer'>, <type 'numpy.int64'>, <type 'numpy.uint64'>, <type 'numpy.complex64'>, <type 'numpy.unicode_'>, <type 'numpy.float16'>, <type 'numpy.bool_'>, <type 'numpy.int64'>, <type 'numpy.uint64'>, <type 'numpy.complex128'>, <type 'numpy.void'>, <type 'numpy.int8'>, <type 'numpy.uint8'>, <type 'numpy.float32'>, <type 'numpy.complex256'>, <type 'numpy.int16'>, <type 'numpy.uint16'>, <type 'numpy.float64'>, <type 'numpy.object_'>, <type 'numpy.datetime64'>, <type 'numpy.int32'>, <type 'numpy.uint32'>, <type 'numpy.float128'>, <type 'numpy.string_'>, <type 'numpy.timedelta64'>), 'noncentral_f': <built-in method noncentral_f of mtrand.RandomState object at 0x7f1382d162d0>, 'triu': <function triu at 0x24fc050>, 'inf': inf, 'fill': <function fill at 0x33492a8>, 'expand_dims': <function expand_dims at 0x2512320>, 'pareto': <built-in method pareto of mtrand.RandomState object at 0x7f1382d162d0>, 'logspace': <function logspace at 0x2469b18>, 'floor': <ufunc 'floor'>, 'polyadd': <function polyadd at 0x2576938>, 'TU': TU, 'nan': nan, 'modf': <ufunc 'modf'>, 'emath': <module 'numpy.lib.scimath' from '/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/lib/scimath.pyc'>, 'arctan': <ufunc 'arctan'>, 'bmat': <function bmat at 0x2511320>, 'Slider': <class 'matplotlib.widgets.Slider'>, 'prism': <function prism at 0x334aa28>, 'ERR_DEFAULT': 0, 'TH': TH, 'xscale': <function xscale at 0x3347f50>, 'register_cmap': <function register_cmap at 0x2dbac08>, 'roll': <function roll at 0x23eaed8>, 'string0': <type 'numpy.string_'>, 'compare_chararrays': <built-in function compare_chararrays>, 'vsplit': <function vsplit at 0x2512668>, 'real_if_close': <function real_if_close at 0x24e8050>, 'repeat': <function repeat at 0x2440848>, 'hamming': <function hamming at 0x25078c0>, 'ALLOW_THREADS': 1, 'errorbar': <function errorbar at 0x3349230>, 'ravel_multi_index': <built-in function ravel_multi_index>, 'string_': <type 'numpy.string_'>, 'isinf': <ufunc 'isinf'>, 'spacing': <ufunc 'spacing'>, 'Inf': inf, 'ndarray': <type 'numpy.ndarray'>, 'delaxes': <function delaxes at 0x33476e0>, 'pcolor': <function pcolor at 0x3349668>, 'e': 2.718281828459045, 'ERR_CALL': 3, 'datetime_data': <function datetime_data at 0x24e8230>, 'test': <bound method NoseTester.test of <numpy.testing.nosetester.NoseTester object at 0x256e9d0>>, 'ERR_IGNORE': 0, 'flag': <function flag at 0x334a758>, 'hsplit': <function hsplit at 0x25125f0>, 'result_type': <built-in function result_type>, 'gradient': <function gradient at 0x250ac08>, 'base_repr': <function base_repr at 0x244c8c0>, 'eigh': <function eigh at 0x25761b8>, 'argwhere': <function argwhere at 0x23eab90>, 'set_string_function': <function set_string_function at 0x244c668>, 'swapaxes': <function swapaxes at 0x2440938>, 'FixedLocator': <class matplotlib.ticker.FixedLocator at 0x2b2c0b8>, 'tensorsolve': <function tensorsolve at 0x2567c80>} | |
2539 finally: | |
2540 # Reset our crash handler in place | |
2541 sys.excepthook = old_excepthook | |
2542 except SystemExit: | |
........................................................................... | |
/groups/chklovskii/home/nuneziglesiasj/data/cropped_5um3_larva_fib_10x10x10nm/cl2/<ipython-input-9-16d0d527a259> in <module>() | |
----> 1 | |
2 | |
3 | |
4 | |
5 | |
6 rf = rf.fit(dat5[0], dat5[1][:, 0]) | |
7 | |
8 | |
9 | |
10 | |
........................................................................... | |
/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/sklearn/ensemble/forest.py in fit(self=RandomForestClassifier(bootstrap=True, compute_i...f1382d162d0>, | |
shared=True, verbose=0), X=memmap([[ 2.00000000e+00, 1.50000006e-02, 2...349975e-03, 0.00000000e+00, 0.00000000e+00]]), y=array([0, 0, 0, ..., 1, 1, 1])) | |
259 y, | |
260 sample_mask, | |
261 X_argsorted, | |
262 self.random_state.randint(MAX_INT), | |
263 verbose=self.verbose) | |
--> 264 for i in xrange(n_jobs)) | |
n_jobs = 2 | |
265 | |
266 # Reduce | |
267 self.estimators_ = [tree for tree in itertools.chain(*all_trees)] | |
268 | |
........................................................................... | |
/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/sklearn/externals/joblib/parallel.py in __call__(self=Parallel(n_jobs=2), iterable=<generator object <genexpr>>) | |
470 self.n_dispatched = 0 | |
471 try: | |
472 for function, args, kwargs in iterable: | |
473 self.dispatch(function, args, kwargs) | |
474 | |
--> 475 self.retrieve() | |
self.retrieve = <bound method Parallel.retrieve of Parallel(n_jobs=2)> | |
476 # Make sure that we get a last message telling us we are done | |
477 elapsed_time = time.time() - self._start_time | |
478 self._print('Done %3i out of %3i | elapsed: %s finished', | |
479 (len(self._output), | |
--------------------------------------------------------------------------- | |
Sub-process traceback: | |
--------------------------------------------------------------------------- | |
AttributeError Mon Jul 9 16:10:08 2012 | |
PID: 20386 Python 2.7.2: /usr/bin/python | |
........................................................................... | |
/groups/chklovskii/home/nuneziglesiasj/projects/scikit-learn/sklearn/ensemble/forest.py in _parallel_build_trees(n_trees=50, forest=RandomForestClassifier(bootstrap=True, compute_i...f1382d16558>, | |
shared=True, verbose=0), X=<class 'numpy.core.memmap.memmap'> instance, y=array([0, 0, 0, ..., 1, 1, 1]), sample_mask=None, X_argsorted=None, seed=845603877, verbose=0) | |
72 tree.set_params(random_state=check_random_state(seed)) | |
73 | |
74 if forest.bootstrap: | |
75 n_samples = X.shape[0] | |
76 indices = random_state.randint(0, n_samples, n_samples) | |
---> 77 tree.fit(X[indices], y[indices], | |
tree.fit = <bound method DecisionTreeClassifier.fit of DecisionTreeClassifier(compute_importances=True, criterion='gini', | |
max_depth=20, max_features='auto', min_density=0.1, | |
min_samples_leaf=1, min_samples_split=1, | |
random_state=<mtrand.RandomState object at 0x7f1382d16528>)> | |
X = undefined | |
indices = array([ 79947, 35762, 189938, ..., 92865, 79280, 38601]) | |
y = array([0, 0, 0, ..., 1, 1, 1]) | |
sample_mask = None | |
X_argsorted = None | |
78 sample_mask=sample_mask, X_argsorted=X_argsorted) | |
79 tree.indices_ = indices | |
80 | |
81 else: | |
........................................................................... | |
/usr/lib/python2.7/site-packages/numpy-1.6.2-py2.7-linux-x86_64.egg/numpy/core/memmap.pyc in __array_finalize__(self=<class 'numpy.core.memmap.memmap'> instance, obj=<class 'numpy.core.memmap.memmap'> instance) | |
252 return self | |
253 | |
254 def __array_finalize__(self, obj): | |
255 if hasattr(obj, '_mmap'): | |
256 self._mmap = obj._mmap | |
--> 257 self.filename = obj.filename | |
258 self.offset = obj.offset | |
259 self.mode = obj.mode | |
260 else: | |
261 self._mmap = None | |
AttributeError: 'memmap' object has no attribute 'filename' | |
___________________________________________________________________________ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment