How to Solve NameError: name 'Embedding' is not defined -- tensorflow

Solution: Import the 'Embedding' module

To Solve the error, add the following line to the top of your code.

from tensorflow import Embedding

 

For more information:
Python tensorflow Embedding