WilliamLam
WilliamLam
The discriminator of SentiGAN is a multi-class classifier, which outputs a `k + 1` dimension vector, where `k` is the number of categories. Another difference between SentiGAN and SeqGAN is...
`sample()` is to sample `num_samples` sentences from the generator G. The CUDA memory would be overflowed if we directly sample `num_samples` sentences from G. Thus, `num_samples` sentences are divided into...
Do you put the `comment.txt` file into the `dataset` directory? The `self.train_data` needs to load the dataset file you specified in the `config.py` file (parameter `dataset`), but it seems there...
Have you put the `obama.txt` into `./dataset` directory?