8uurg
8uurg
As someone who encountered a similar issue, I've managed to simplify it down to: ```python example = pl.DataFrame({"f": {"a": [0, 1, 2]}}) (example.lazy() .select(pl.col("f").struct.field("a")) .select(pl.col("a")) ).collect() ``` Results in: ```python...
> Hi @8uurg , I guess these come from diverging version of libjpeg[-turbo]. > > Could you please share the PIL version, as well as the output of `ldd _imaging.so`...
Thanks for the information! I was investigating this because there was a small change in the validation performance of a model after changing how the images were loaded. The difference...
I've used the developer tools, and it seems like they are simply being embedded using `svg` tags only, no `iframe`s. So that would explain it - vscode does not isolate...
@iosonofabio I have switched to matplotlib for visualizations in the notebook as a workaround, which I can confirm works just fine. :)