shentianxiao / language-style-transfer

Apache License 2.0
553 stars 135 forks source link

这个地方为什么要这样?多谢! #22

Closed guotong1988 closed 5 years ago

guotong1988 commented 5 years ago

style_transfer.py的

image

是什么意义和作用呢

@shentianxiao 多谢!

guotong1988 commented 5 years ago

teach_h是decoder_input过decoder来的,就是完整文本(内容+风格)的最终表示, (前面加一个h_ori为和soft_h_tsfgo的hidden-state对应)

soft_h_tsfencoder_input过encoder再去掉风格信息再过decoder来的,所以就是纯内容的文本,

teach_hsoft_h_tsf通过Discriminator最终来让decoder学习到风格信息。

encoder_input如果没有noise是和decoder_input基本一致的。

image