Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ConditionalGMM/MNorm.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import scipy.stats as ss


class CondMNorm(object):
class CondMNorm:
"""Conditional multivariate normal. Given a joint mean vector and
joint covariance matrix, precompute everything that can be computed
in order to solve conditional expressions.
Expand Down
4 changes: 1 addition & 3 deletions src/ConditionalGMM/UnivariateGMM.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
import numpy as np
import scipy as sp

from ConditionalGMM.condGMM import *


class UniGMM(object):
class UniGMM:
"""Conditional Gaussian mixture model of a single random variable.
This class exists to provide helpful routines, such as computing CDFs
and PPFs of the GMM.
Expand Down
4 changes: 2 additions & 2 deletions src/ConditionalGMM/condGMM.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import numpy as np
import scipy as sp

from ConditionalGMM.MNorm import *
from ConditionalGMM.MNorm import CondMNorm


class CondGMM(object):
class CondGMM:
"""Conditional Gaussian mixture model. Built from a collection of
conditional multivariate normal (CondMNorm) distributions weighted
to be properly normalized.
Expand Down
Loading