Trying to import some models with Tensorflow Hub with this code :
import tensorflow as tf
import tensorflow_hub as hub
elmo_model = hub.Module('https://tfhub.dev/google/elmo/2', trainable=True)
Makes my notebook stuck. The only log line appearing before getting stuck is :
INFO:tensorflow:Using /tmp/tfhub_modules to cache modules.
How to unstuck it and allow me to import models from Tensorflow Hub ?