Jinkyou Son

Results 58 comments of Jinkyou Son

Any updates? `ExMachina` is a very common library for `Ecto` users. I really hope this problem will be solved soon.

@jonatanklosko I think file input is not that different from text input. Test input also can take large input and cause memory problems. It is just another interface of input.

Let me try to handle this issue

Hmm.. maybe I misunderstood the reference PR. For the arithmetic operations, polars do series + expr -> series. right? I need to check series + expr -> expr, expr +...

Similar problem. How can I know which operations are available to be performed lazily? Following https://hexdocs.pm/explorer/Explorer.DataFrame.html#mutate_with/2, > This function is similar to [mutate/2](https://hexdocs.pm/explorer/Explorer.DataFrame.html#mutate/2), but allows complex operations to be performed,...

Oh, it is just not implemented! https://github.com/elixir-nx/explorer/blob/main/lib/explorer/backend/lazy_series.ex#L450 ```elixir # The following functions are not implemented yet and should raise if used. funs = [ {:concat, 2}, {:fetch!, 2}, {:mask, 2},...

@josevalim I'm trying to implement `Explorer.Series.concat/2` with reference to `Explorer.Series.coalesce/2`. #366 I have one question. Should LazySeries be able to operate only with LazySeries? (Series + LazySeries => Series(eager) is...

Oh, I'm getting to understand the concept of lazy series. Thanks!

How about closing it and following up on this in #381?