I wondered if anybody knows if and how Stanford Open IE can be set up in google colab?
I've followed the colab tutorial for the CoreNLP client before and that seems to be working.
I get the following error when running the example from their 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.
Any advice is appreciated :-)