Модель ELMo - объект 'list' не вызывается - PullRequest
0 голосов
/ 05 августа 2020

Я не понимаю, почему это вызывает ошибку объект '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
...