Мне было интересно, знает ли кто-нибудь, как можно настроить Stanford Open IE в Google Colab?
Я уже следил за учебником по colab для клиента CoreNLP раньше, и, похоже, он работает.
Я получаю следующую ошибку при запуске примера из их github (https://github.com/philipperemy/Stanford-OpenIE-Python):
---------------------------------------------------------------------------
PermanentlyFailedException Traceback (most recent call last)
<ipython-input-2-01d7100eb03f> in <module>()
4 text = 'Barack Obama was born in Hawaii. Richard Manning wrote this sentence.'
5 print('Text: %s.' % text)
----> 6 for triple in client.annotate(text):
7 print('|-', triple)
8
3 frames
/usr/local/lib/python3.6/dist-packages/stanfordnlp/server/client.py in ensure_alive(self)
135 time.sleep(1)
136 else:
--> 137 raise PermanentlyFailedException("Timed out waiting for service to come alive.")
138
139 # At this point we are guaranteed that the service is alive.
PermanentlyFailedException: Timed out waiting for service to come alive.
Любые советы приветствуются :-)