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
Thanks, yes we are aware of this happening due to the deprecation of the Merge API, I will be pushing this change soon in my 2nd edition of the text analytics book and once that is out, will be replacing the code here also!
Hi, you can replace Merge by Concatenate
model.add(Merge([word_model, context_model], mode="dot"))
-->
model.add(Concatenate([word_model, context_model]))
in the below code with keras latest version, its not working.
I have modified the code from sequential api to functional API. please find below the code:
The text was updated successfully, but these errors were encountered: