Dong Lyu

Results 3 issues of 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. ![Xnip2024-05-01_15-47-07](https://github.com/hguandl/PlayCover/assets/54938602/8338731d-8496-4916-a788-e3a01fe1c5ef) ### Steps to reproduce Any game installation process ### Expected behaviour see the...

bug