I defined a function which returns embeddings of n dimensions for a list of strings.
The tensorflow embeddings which is a tensor are accessed by
(tensor_embeddings).numpy().tolist[0]
I would like to understand this way of accessing the embeddings and if below code does the same job
numpy.array(embeddings).tolist[0]