Kale Kundert

Results 34 issues of Kale Kundert

I've realized that the theme assets take up a pretty large amount of space, which is wasteful considering that most projects would use at most one theme. I think the...

### Checks - [X] I have checked that this issue has not already been reported. - [X] I have confirmed this bug exists on the [latest version](https://pypi.org/project/polars/) of Polars. ###...

bug
python

This PR changes the documentation to recommend installing with `pipx` rather than `pip`. There are two reasons why I think this is a useful change: - `pipx` installs packages into...

A couple times, I've wanted to use `Memory.cache` on a function that returns an unpicklable object, but where I don't actually want/need to cache the specific parts of the object...

The best way to explain this PR is to show an example before and after: Before: ``` =============================================================================================== Layer (type:depth-idx) Output Shape Param # =============================================================================================== GenotypeNetwork -- -- ├─Sequential: 1-1...

As discussed in #105, this PR adds some options to have `debug()` output stack traces. While I was working on this, I realized that there are two reasonable way to...

While trying to write a Fourier max pooling layer, I realized that a lot of the general pooling functionality I needed was already implemented by the various pointwise pooling layers,...

This PR fixes two errors I encountered when trying to resume training a model from a checkpoint. The first involves basis expansion, and the second involves batch normalization. # Basis...

Attempting to iterate over a geometric tensor currently results in an infinite loop. The reason is that python considers an object to be iterable if it implements `__iter__()` or `__getitem__()`....