You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm on a problem to create bilingual probabilistic language model from learning a big amounts of text with MRNN+HF. Your code seems to be a great fit to the problem. Demo training from the repo is passing fine, but when I tried ContiguousText class as data_object, I get following error:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "opt/hf.py", line 878, in optimize
grad, train_losses = self.grad(self.grad_batches, self.X)
File "opt/hf.py", line 470, in grad
return self._op(batches, func)
File "opt/hf.py", line 442, in _op
d = self.data_object(b)
File "opt/d/lang/__init__.py", line 201, in __call__
V_np, O_np, M_np = self.make_V_O_M_expand(seed)
File "opt/d/lang/__init__.py", line 155, in make_V_O_M_expand
from pylab import expand
ImportError: cannot import name expand
I have matplotlib1.2.1 installed, but also cannot find pylab.expand in any previous versions nor in release candidate.
Did you use custom version of pylab?
The text was updated successfully, but these errors were encountered:
Hi! I'm on a problem to create bilingual probabilistic language model from learning a big amounts of text with MRNN+HF. Your code seems to be a great fit to the problem. Demo training from the repo is passing fine, but when I tried
ContiguousText
class as data_object, I get following error:I have matplotlib1.2.1 installed, but also cannot find
pylab.expand
in any previous versions nor in release candidate.Did you use custom version of pylab?
The text was updated successfully, but these errors were encountered: