ForceBru
ForceBru
Okay, got it, delete directory with the DB or handle the `RuntimeError`. Thanks! It might also be useful (mainly for early experimentation and new user onboarding) to support in-memory databases...
If I feed the correct offset, `-8`, to `SB_type` here: https://github.com/kcelebi/riscv-assembler/blob/9a1cf4978e919be63fefbf63710b6ff51f932e74/riscv_assembler/convert.py#L283-L284 ...`mod_imm` seems fine (even though RARS says it should be _all_ ones, but whatever): ``` >>> imm = -8...
In fact, `Parquet.jl` can't read _any_ Parquet file produced by Polars 0.17.2 and earlier versions. ## Polars code (mostly same as above) ```python import polars as pl df = pl.DataFrame({...
One design issue I'm not sure how to solve is implementing multiple parameterizations of the same distribution. In particular, I want the usual $\mathrm{GIG}(a,b,p)$ as well as Wolfram's $\mathrm{GIG}(\mu,\lambda,\theta)$. Both...
@devmotion, I now consider my implementation done. The new structs are `GeneralizedInverseGaussian` and `GeneralizedHyperbolic`. I wrote docstrings and implemented tests comparing the results to Wolfram language. I didn't touch `InverseGaussian`,...
@cpfiffer, FWIW, [Parquet2.jl](https://gitlab.com/ExpandingMan/Parquet2.jl) has been working fine for me. Parquet.jl straight up [can't open _any_ files written by Polars](https://github.com/JuliaIO/Parquet.jl/issues/173), for example, but Parquet2.jl didn't have any issues with this. Seems...
> is _ipc the correct thing to write out? Not sure, it's just what I've been using in Python. Should I be using a different `write_` method to write Arrow...
Yes, pyarrow can read files written by `df.write_ipc` and `df.write_ipc_stream`: ```python #!/usr/bin/env -S uv run --script # /// script # requires-python = ">=3.11" # dependencies = ["polars==1.21.0", "pyarrow==19.0.0"] # ///...
More examples where Arrow.jl can't read the file: ``` > python Python 3.12.7 (main, Jan 17 2025, 16:55:27) [GCC 14.2.0] on linux Type "help", "copyright", "credits" or "license" for more...
Here's a `BoundsError: attempt to access 0-element Vector{Vector{UInt8}} at index [1]`: ``` > python >>> from random import randint; col=[randint(1,500) for _ in range(100)]; print(col); import polars as pl; pl.DataFrame({'more':...