You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this model fixed? Because when the training of this model is finished, users can only change the output by changing the "start token"?
What if I want to generate something else?
Compared to the raw-gan in CV, people can use the gan to generate the picture from some noise input. So can we use this SeqGAN model to do that? Generate the sentence from some noise input?
The text was updated successfully, but these errors were encountered:
You can give the model some "hint" by changing the start token or the initial hidden state, which is initiated all zeros.
Change the positive file to some others, like word tokens of Tang poems as the paper described, instead of tokens generated by oracle to implement your own SeqGAN.
The noise in CV such as gaussian distribution is used to imitate the real data distribution. GAN minimizes the KL-divergence of generated data and real data to achieve the goal of producing vivid images. However, since the text distribution may be much more complicated than image, I'm not sure whether it is effective to do that, but it is worth exploring.
The text was updated successfully, but these errors were encountered: