-
Due to random init, sometimes seqGAN will generate empty sequences, leading to errors of metric.
Try to avoid this or identify this error at test.
-
楼主拜读了您用SeqGAN训练生成小黄鸡语料的文章,https://www.ctolib.com/GaoQ1-seqgan.html感到很感兴趣。请问可以分享一下代码吗?不会做商业用途,只为了交流学习。O(∩_∩)O谢谢啦。我的邮箱是yurusu@sina.com
-
ub16c9@ub16c9-gpu:/media/ub16c9/fcd84300-9270-4bbd-896a-5e04e79203b7/ub16_prj/TextGAN-PyTorch/run$ python3.6 run_seqgan.py 0 0
job_id: 0, gpu_id: 0
==================================================…
-
您好,我训练seqGAN中的模型,出现下面的结果和错误,请问这应该如何解决,谢谢
- ==================Update Discriminator: 199=====================
- ==============================mc_search:False===================================
- ==…
-
Installing collected packages: numpy, torch, tqdm
Found existing installation: numpy 1.16.4
Uninstalling numpy-1.16.4:
Successfully uninstalled numpy-1.16.4
Found existing installati…
-
C13
AC: Evaluate SeqGAN on OpSpam dataset to obtain the same results shown in the FakeGAN paper without the second discriminator.
-
Hi,
Sorry one more question,
Which arg should I follow to train SEQGAN(not leakGAN)?
Is it the one in real_data_experiments/trained_models/news/word/best_gan/args.json?
Note that "seqgan_reward…
-
一開始,是於utils/data_util.py中,vocab_file.write(w + "\n")這一行報錯,顯示bytes不能與字串"\n"連結在一起存檔,所以修改為vocab_file.write(str(w) + "\n")順利儲存gen_data/train.answer、train.query,test.query,以及test.answer四個檔案,接著,執行execute.py…
-
Refer to SeqGAN: Sequence Generative Adversarial Nets with Policy Gradient
-
Hi @suragnair, thanks for sharing your code. I wonder if you think that should be straightforward to adjust your code to predict real-valued samples, instead of discrete ones. Or you see some issues w…