ZiJianZhao / SeqGAN-PyTorch

A implementation of SeqGAN in PyTorch, following the implementation in tensorflow.
260 stars 93 forks source link

Bug on line 140 of main #6

Open bgenchel opened 6 years ago

bgenchel commented 6 years ago

arguments are incorrectly positioned. d_num_class is what you want to use for output dim ... I think, so you need to place that variable after num_filters and before dropout.

Right now you have it placed as the first input argument, which shifts all the following arguments into incorrect positions.

xh22 commented 5 years ago

i think its right now