Johnson Sun
Johnson Sun
Do you mean saving the objects you created? You can click "save" in the toolbar, and then type your preferred file name, your browser should pop out a saving dialog....
I've just uploaded some sample files [here](https://github.com/ricktu288/ray-optics/tree/master/samples), you can open the sample files to see the results.
Can you provide a screenshot? I cannot reproduce your issue on Chrome 102 with uBlock Origin.
I thinks your issue is same as #40. Can you post a screenshot of the console logs in the console window? (`Ctrl+Shift+I > Console`) Did the error persist in Incognito/Private...
I'm not sure if web extension API supports those operations, but I think it may be worth investigating. I'll see if I can try implement it in my free time....
The current approach of wrapping PDFs in `iframe` cannot fix this easily, see [this post](https://stackoverflow.com/a/10884744). Instead of viewing the PDF inside an `iframe`, directly including the source of [PDF.js](https://github.com/mozilla/pdf.js#online-demo) through...
Yeah, I think this will be a nice improvement. Do you have a few such links that aren't currently supported by arxiv-utils?
Great, I'll find some time to fix it. Thanks!
- For the memory leak in EpisodeRunner: Running EpisodicRunner using QMIX with 8M steps using hidden layer with 512 neurons should reproduce the issue. ```sh python3 src/main.py --config=qmix --env-config=sc2 with...
Yes. PyTorch maintains a computation graph during the forward pass to record the tensor operations. When the loss is defined and we perform `tensor.backward`, the computation graph is back-traced for...