Felix F Zimmermann
Felix F Zimmermann
### Issue Neptune writes some information to stdout. This can break for example the pytorch lightning progress bar. Example: The run URL is written in https://github.com/neptune-ai/neptune-client/blob/bd66c94db7b285715132787582b3da6108f02605/neptune/new/metadata_containers/metadata_container.py#L350 ### Describe the solution...
In https://github.com/nepluno/lbfgsb-gpu/blob/f3522f6ef2903cdb0628a37f346b0e19d5970f70/culbfgsb/active.cu#L34-L40 Whereas in Nocedal et als fortran code (http://users.iems.northwestern.edu/~nocedal/lbfgsb.html) it is ```Fortran if (nbd(i) .gt. 0) then if (nbd(i) .le. 2 .and. x(i) .le. l(i)) then if (x(i) .lt....
Hi, first of all, thank you for making this code available! In the readme you mention one should allocate a buffer for `g`. But there is no way to actually...
Hi, i am rather new to the concept of BNNs and wondering if there is a reason for the BatchNorm affine transformation parameters not being considered as random variables, i.e....
I am new to plotly. Installed package into mathematica, but all Plotly commands ``` Needs["Plotly`"] Plotly[Sin[Exp[x]], {x, -Pi, Pi}, AxesLabel -> {"e", "s"}] ``` just return [...] ``` \!\( TagBox[...
### Is your feature request related to a problem? Please describe. In MR Imaging, we need to calculate for long lists of 2D or 3D points the volume of the...
Hi, I realy like the concept behind pnumpy, but might prefer if an import of pnumpy would not automagically monkey patch numpy, but only provide pnumpy.* entry points to parallel...
Hi, to be able to use `torch.func.*` (for example, `torch.func.grad`) with torchkbnufft, the` torch.autograd.Function`s in [torchkbnufft/_autograd/interp.py](https://github.com/mmuckley/torchkbnufft/blob/7039bc1c2d32cf86c8f25d39bcf1bf394368bdd4/torchkbnufft/_autograd/interp.py) would need an update to the newer calling signature. See https://pytorch.org/docs/stable/notes/extending.func.html. In particular, the...
Maybe it is to niche, but we would be interested in a fused circular windowed attention. Currently, we pad q,k,v, use the fused kernel and crop. It would either help...
Hi, using the python Plan interface it is possible to cause a python crash by, for example, creating a plan with `n_trans=2,` then modifying `n_trrans=1` and executing the plan (with`...