Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
borchero committed Mar 29, 2020
1 parent 3294f2b commit 32ee3b3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions pycave/bayes/gmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import torch
import torch.nn as nn
import torch.distributions as dist
import bxtorch.nn as xnn
from bxtorch.utils.stdio import ProgressBar
from bxtorch.utils.torch import to_one_hot
import pyblaze.nn as xnn
from pyblaze.utils.stdio import ProgressBar
from pyblaze.utils.torch import to_one_hot
from sklearn.cluster import KMeans
from .utils import log_normal, log_responsibilities, max_likeli_means, max_likeli_covars

Expand Down Expand Up @@ -166,7 +166,7 @@ def fit(self, data, max_iter=100, batch_size=None, eps=1e-7, verbose=False):
Returns
-------
bxtorch.nn.History
pyblaze.nn.History
A history object containing the negative log-likelihoods over the course of the
EM-training.
"""
Expand Down
4 changes: 2 additions & 2 deletions pycave/bayes/markov.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import torch
import torch.nn as nn
import torch.distributions as dist
import bxtorch.nn as xnn
import pyblaze.nn as xnn
from .utils import power_iteration

class MarkovModelConfig(xnn.Config):
Expand Down Expand Up @@ -77,7 +77,7 @@ def fit(self, sequences, teleport_alpha=0):
Returns
-------
bxtorch.nn.History
pyblaze.nn.History
For completeness, it returns a history object. However, apart from the duration of the
training, the object does not carry any information.
"""
Expand Down

0 comments on commit 32ee3b3

Please sign in to comment.