Tobias Schweizer

Results 53 issues of Tobias Schweizer

Hi, I am trying to run qlever-ui behind Traefik in a docker compose setup (got inspired by https://github.com/qlever-dev/qlever-ui/issues/99). I have an issue when loading the JS files. Somehow, the app...

Hi @markhliu, When passing the predicted tokens to the `CrossEntropyLoss` function, the second and third dimensions are swapped: https://github.com/markhliu/DGAI/blob/main/ch08TextGenerationRNNs.ipynb ```python output, (sh,sc) = model(inputs, (sh,sc)) loss = loss_func(output.transpose(1,2),targets) ``` Here...

Hi @markhliu, I am not sure I understand the implementation of the critic's [loss function](https://github.com/markhliu/DGAI/blob/main/ch05Conditional_GAN.ipynb) in chapter 05: `loss_critic=(-(torch.mean(critic_real) - torch.mean(critic_fake)) + 10 * gp)` In the book on page...