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
ran this code snippet on my Jupyter notebook(was desperate to solve the issue), got unexpected errors, pd.read_csv could not access the local file uploaded and there were errors with numpy module as well.
I am using the latest installation as per this - farizrahman4u/seq2seq#276 (comment)
Now, I am trying to call you Seq2Seq model from recurrentshop, but it gives me an import error.
51 model.add(Embedding(NUM_WORDS, 200, input_length=MAX_LEN)) ---> 52 attn = AttentionSeq2Seq(batch_input_shape=(None, MAX_LEN, 200), hidden_dim=10, output_length=MAX_LEN, output_dim=NUM_WORDS, depth=1)
NameError: name 'activations' is not defined
Its note from keras, I tried installing other versions also.
The text was updated successfully, but these errors were encountered: