Skip to content

Commit 11c3b0f

Browse files
committed
removed numba
1 parent 3a99370 commit 11c3b0f

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

code/python/cni_toolbox/gadgets.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
import numpy as np
3030
import scipy as sc
31-
from numba import jit
3231
from scipy.special import gamma
3332

3433

@@ -51,7 +50,6 @@ def two_gamma(timepoints):
5150
return hrf
5251

5352

54-
@jit
5553
def regress(Y, X, l = 0.):
5654

5755
'''
@@ -102,7 +100,6 @@ def regress(Y, X, l = 0.):
102100

103101
return beta
104102

105-
@jit
106103
def correct_autocorr(X, W):
107104
'''
108105
Parameters
@@ -150,4 +147,4 @@ def size(X, num_desired):
150147
output[0:num_existing] = np.shape(X)
151148
return output
152149

153-
150+

0 commit comments

Comments
 (0)