我正在使用来自 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。有没有可能的方法可以在128
不使用 PCA/丢失信息的情况下将 ELMO 嵌入的维度减少到?