标签: deep-learning nlp text-classification
在文本分类任务中,除了嵌入文字外,我还想结合其他一些功能,例如文本类型(政治新闻/娱乐),例如[0, 1] [1, 0],在哪一层我可以配合吗? 例如在合并层之后: h_pool = tf.concat(pooled_outputs, 3) new_vector = tf.concat(h_pool,text_category_vectory)
[0, 1]
[1, 0]
h_pool = tf.concat(pooled_outputs, 3)
可以吗?