recurrentshop icon indicating copy to clipboard operation
recurrentshop copied to clipboard

Framework for building complex recurrent neural networks with Keras

Results 46 recurrentshop issues
Sort by recently updated
recently updated
newest added

I keep getting this error below when I try to import the package: from recurrentshop import * File "/usr/local/lib/python3.6/dist-packages/recurrentshop-1.0.0-py3.6.egg/recurrentshop/__init__.py", line 1, in File "/usr/local/lib/python3.6/dist-packages/recurrentshop-1.0.0-py3.6.egg/recurrentshop/engine.py", line 4, in File "/usr/local/lib/python3.6/dist-packages/recurrentshop-1.0.0-py3.6.egg/recurrentshop/backend/__init__.py", line...

# Patching CVE-2007-4559 Hi, we are security researchers from the Advanced Research Center at [Trellix](https://www.trellix.com). We have began a campaign to patch a widespread bug named CVE-2007-4559. CVE-2007-4559 is a...

errors occur when I use the example code: `from recurrentshop import * from keras.layers import * from keras.models import Model input = Input((5,)) state1_tm1 = Input((10,)) state2_tm1 = Input((10,)) state3_tm1...

setup: !git clone https://www.github.com/farizrahman4u/recurrentshop.git %cd recurrentshop !python setup.py install !pip install git+https://github.com/farizrahman4u/seq2seq.git I got the following error after running this line of code: _model = AttentionSeq2Seq(input_dim=n_features, input_length=in_timestep, hidden_dim=300, output_length=n_features, output_dim=n_features,...

keras | 2.2.5 | 2.2.4 keras-applications | 1.0.8 | 1.0.8 keras-preprocessing | 1.1.0 | 1.1.0 scipy | 1.3.1 | 1.3.1 setuptools | 39.1.0 | 41.0.1 six | 1.12.0 | 1.12.0...

instead of cloning the repository and running `python setup.py` install, use the `pip install URL` syntax.

model = Seq2Seq(batch_input_shape=(16, 7, 5), hidden_dim=10, output_length=8, output_dim=20, depth=4, peek=True) AttributeError: '_OptionalInputPlaceHolder' object has no attribute 'inbound_nodes'

i use attention model ,but get this error at model.load('attention.h5') i already trained this model and there is a h5 file in the same directory ValueError: Unknown layer: RecurrentSequential appreciate...

I am trying to make an autoencoder that uses variable length inputs (batched together). I want to have `decoder=True` so that the decoding portion has the latent space as an...

Similar to this issue: https://github.com/farizrahman4u/recurrentshop/issues/61 But it seems like we should either have teacher forcing or read_out on at either time. Is there a way to transition between them? It...