├── LICENSE ├── README.md ├── configuration.py ├── dataloader.py ├── discriminator.py ├── generator.py ├── misc ├── README.md └── seqgan.png ├── rollout.py ├── save ├── eval_file.txt ├── experiment-log.txt ├── generator_sample.txt ├── real_data.txt └── target_params.pkl ├── target_lstm.py ├── train.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/configuration.py -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/dataloader.py -------------------------------------------------------------------------------- /discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/discriminator.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/generator.py -------------------------------------------------------------------------------- /misc/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /misc/seqgan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/misc/seqgan.png -------------------------------------------------------------------------------- /rollout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/rollout.py -------------------------------------------------------------------------------- /save/eval_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/save/eval_file.txt -------------------------------------------------------------------------------- /save/experiment-log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/save/experiment-log.txt -------------------------------------------------------------------------------- /save/generator_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/save/generator_sample.txt -------------------------------------------------------------------------------- /save/real_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/save/real_data.txt -------------------------------------------------------------------------------- /save/target_params.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/save/target_params.pkl -------------------------------------------------------------------------------- /target_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/target_lstm.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChenChengKuan/SeqGAN_tensorflow/HEAD/utils.py --------------------------------------------------------------------------------