We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After pretraining the generator and discriminator, the gan_training is too slow even for 1K training data.
where the get_reward takes the most time.
The step is rewards = generator.get_reward(x=x, x_to_maxlen=x_to_maxlen, y_sample=y_sample_dealed, y_sample_mask=y_sample_mask, rollnum=config.rollnum, disc=discriminator, max_len=config.discriminator.dis_max_len, bias_num=config.bias_num, data_util=du)
May I ask why this happens ?
Thank you in advance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After pretraining the generator and discriminator, the gan_training is too slow even for 1K training data.
gan_train.py line 102
where the get_reward takes the most time.
The step is
rewards = generator.get_reward(x=x,
x_to_maxlen=x_to_maxlen,
y_sample=y_sample_dealed,
y_sample_mask=y_sample_mask,
rollnum=config.rollnum,
disc=discriminator,
max_len=config.discriminator.dis_max_len,
bias_num=config.bias_num,
data_util=du)
May I ask why this happens ?
Thank you in advance.
The text was updated successfully, but these errors were encountered: