2-5

Results 51 comments of 2-5

I looked at the `cut` implementation and it uses `join_asof`. From what I see `join_asof` doesn't support NOT matching the right boundary. `pandas.merge_asof` has a `allow_exact_matches` to control if the...

Lint Python build failed with github connect error: ``` error: failed to get `arrow2` as a dependency of package `polars-core v0.26.1 (/home/runner/work/polars/polars/polars/polars-core)` ... which satisfies path dependency `polars-core` (locked to...

I actually wanted to open an Enhancement request regarding time functions. If I have a `pl.Datetime` column, how can I test time components? Something like `time_col.dt.hour < 10` in an...

> I'm assuming python doesn't distinguish between constexpr-type string literal and regular python strings generated during runtime. They are discussing parsing constexpr-type string literals at bytecode compilation time: https://peps.python.org/pep-0701/ But...

Is this issue present if `tuning_data` is passed to `fit` together with `use_bag_holdout=True`?

It's a personal preference, I don't like the look of font ligatures and how they change cursor movement. Others have written at length about this: https://practicaltypography.com/ligatures-in-programming-fonts-hell-no.html Use of font ligatures...

I managed to get everything up and running - created an aim repo, did a test run, use the web-ui to see it: ![aim_1](https://user-images.githubusercontent.com/3753822/206502566-df2a6b80-fdef-45e7-b3ac-963f4b6cc8a5.png) ![aim_2](https://user-images.githubusercontent.com/3753822/206502597-d98c4ac8-f1b7-4273-b336-2f495728c78e.png) ![aim_3](https://user-images.githubusercontent.com/3753822/206502622-187e9f9c-3d7d-4a6c-bea3-7fdda3039bcf.png) One issue I encountered:...

Everything is pushed. But for now you need to manually mess around with the `.whl` files - build both `aim` and `aimrocks` with these PR steps, but then manually take...

Thanks, I've found it too, but it doesn't seem to work. It looks that there are multiple `logging` levels and formatters in play (uncolored INFO, green INFO and no WARN...

I have discovered the issue, `aim.storage.locking` uses a `filelock.UnixFileLock`, it needs to use `filelock.WindowsFileLock`. ![aim_6](https://user-images.githubusercontent.com/3753822/206521343-255b75b9-713a-43a3-bf5d-8703a27e380b.png) `NotImplementedError` has an empty `str` representation, which is why the error was not visible in...