我正在使用来自Tensorflow Hub的ELMO模型。
import tensorflow as tf
import tensorflow_hub as hub
from tensorflow.contrib import predictor
elmo = hub.Module("https://tfhub.dev/google/elmo/3", trainable=False)
默认输出尺寸为1024。是否有任何可能的方法可以在不使用PCA /丢失信息的情况下将ELMO嵌入的尺寸减小到128
?