Dong Lyu
Dong Lyu
进度条百分比,只显示一半。 且有时候下载进度会超过100%,然后安装失败,提示There was a problem parsing the package.
在看源码的过程中发现了一点小问题 1. wgan_train.py源码还是使用了sigmoid再做cross_entro_loss,但是WGAN应该直接返回Discrimintaror的输出logits作为loss ``` def d_loss_fn(generator, discriminator, batch_z, real_image): fake_image = generator(batch_z, training=True) d_fake_score = discriminator(fake_image, training=True) d_real_score = discriminator(real_image, training=True) loss = tf.reduce_mean(d_fake_score - d_real_score) # lambda = 10...
### Describe the bug MacOS 14.4.1 (23E224) During game installation the progress box below displays abnormally.  ### Steps to reproduce Any game installation process ### Expected behaviour see the...