ExpandingMan
ExpandingMan
One of the worst things about neovim in general at the moment is that debugging issues with plugins is a nightmare. Far too often I have to disable a couple...
I'm interested in implementing sparse dictionary learning and sparse PCA. These techniques are implemented in scikit-learn, see [here](https://scikit-learn.org/stable/modules/decomposition.html#sparsepca), references therein. I might take this on if I deem it a...
There are several reasons for this: - It moves the responsibility of string formatting to the `Base` Julia code generator. (e.g. breaking printing bugs such as was fixed for empty...
Most name collisions aren't really a problem here thanks to modules, but conflicts with `Base` can still be a problem (for example names like `Vector` and `Array`). One simple solution...
I have found myself dealing with unions of disjoint intervals sufficiently often that I feel it's about time I wrote a package for it. I think it's good for that...
### Motivation and description Dealing with recurrent networks presents a lot of questions because it works rather differently from the stateless case. I think it would be extremely helpful to...
This issue is to provide a minimal example of neural network training with Lux to hopefully make it easier for developers to work toward making it viable. It probably isn't...
The reason I had never done this was mainly because I wanted to support memoizing to disk for very expensive operations. One of the main reasons I haven't had as...
- [ ] Both more robust and more flexible file management. Users should have the ability to name files easily but also forget about underlying file management if they want...
I would expect that `Interval(0, -1)` should either throw an error, or better yet, give an empty interval, but instead it automatically re-orders to `Interval(-1, 0)`. This seems dangerous, because...