Skip to content

Commit 7ae8cc3

Browse files
committed
remove unused imports
1 parent 8fcdb5d commit 7ae8cc3

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

pymc3/gp/cov.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import theano
2-
import theano.tensor as tt
31
import numpy as np
2+
import theano.tensor as tt
43
from functools import reduce
54
from operator import mul, add
65

pymc3/gp/gp.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
import numpy as np
2-
3-
import theano
42
import theano.tensor as tt
5-
import theano.tensor.slinalg
63

74
import pymc3 as pm
85
from pymc3.gp.cov import Covariance, Constant
96
from pymc3.gp.mean import Zero
107
from pymc3.gp.util import (conditioned_vars,
11-
infer_shape, stabilize, cholesky, solve, solve_lower, solve_upper)
8+
infer_shape, stabilize, cholesky, solve_lower, solve_upper)
129
from pymc3.distributions import draw_values
1310

1411
__all__ = ['Latent', 'Marginal', 'TP', 'MarginalSparse']

0 commit comments

Comments
 (0)