Sebastian Modlich
Results
2
comments of
Sebastian Modlich
For me saving the model works when I use dill instead of cpickle. `import dill as pickle` `model=...` `pickle.dump(model,open("model.p","wb"),protocol=2)` `with open("model.p","rb")as m:` ` model =pickle.load(m)`
For me attentionSeq2Seq works with theano Backend but not with tensorflow backend. Reason is that batch_dot in tensorflow must be used with at least 3d Tensors [https://github.com/fchollet/keras/issues/4588](url). You can change...