❤️
❤️
> Have you been able to reproduce this consistently? So regarding this, yes but only under the conditions above. For now I've been able to get the model to work...
I'm experiencing the same issue. Also, this seems to be expected behaviour, as they'll just allow me to solve 12-15 captchas before saying "Something went wrong" every single time. I'm...
While #30213 was opened for experimental modules it seems it became inclusive of experimental loaders midway through, but can understand that sentiment has shifted since then. I'd defend not removing...
It doesn't look like the callback context is being disposed of. The culprit was a TLS connection I had made, consumed and closed in the callback of a model `.save`....
in `skipthoughts.py`: ``` python utable = numpy.load(path_to_tables + 'utable.npy', encoding='latin1') btable = numpy.load(path_to_tables + 'btable.npy', encoding='latin1') ``` Adding `encoding='latin1'` allows it to decode those characters.
If you run `python -c "import theano"` what is the output? Make sure you're running Anaconda python (if you type `python` and hit enter it should have a preface about...
Try running: ``` pip install theano; python -c "import theano" ``` Should work, otherwise pip and python are pointing to two different versions/site_modules. Btw--a pip install in an anaconda environment...
The `skmodels` and `sktables` keys need to refer to model **directories,** which you download from skipthoughts repo (see README or just go to @ryankiros skipthoughts repo and run the snippet...
`Killed` may be the result of running out of memory/resources. Check resource consumption during run. What are your system specs?
If you try to load the models from the interpreter like so: ``` >>> import numpy as np >>> np.load('models/modelname.npz') ``` Are you able to load the models? If this...