├── README.md ├── dataloader.py ├── discriminator.py ├── figures ├── lc.png └── seqgan.png ├── generator.py ├── rollout.py ├── save ├── experiment-log.txt ├── target_params.pkl └── target_params_py3.pkl ├── sequence_gan.py └── target_lstm.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/README.md -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/dataloader.py -------------------------------------------------------------------------------- /discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/discriminator.py -------------------------------------------------------------------------------- /figures/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/figures/lc.png -------------------------------------------------------------------------------- /figures/seqgan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/figures/seqgan.png -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/generator.py -------------------------------------------------------------------------------- /rollout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/rollout.py -------------------------------------------------------------------------------- /save/experiment-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/save/experiment-log.txt -------------------------------------------------------------------------------- /save/target_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/save/target_params.pkl -------------------------------------------------------------------------------- /save/target_params_py3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/save/target_params_py3.pkl -------------------------------------------------------------------------------- /sequence_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/sequence_gan.py -------------------------------------------------------------------------------- /target_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LantaoYu/SeqGAN/HEAD/target_lstm.py --------------------------------------------------------------------------------