Я не понимаю, почему это вызывает ошибку объект 'list' не вызывается
x = ["Roasted almonds are a popular snack in California"]
# Extract ELMo features
embedding = elmo(x, signature="default", as_dict=True)["elmo"]
embedding.shape
ERROR -
TypeError Traceback (most recent call last)
<ipython-input-41-24540a076841> in <module>()
1 # Extract ELMo features
2
----> 3 embedding = elmo(x, signature="default", as_dict=True)["elmo"]
4
5 embedding.shape
TypeError: 'list' object is not callable