Kip Cole
Kip Cole
`Calendar.Interval.new/3` is currently a private function however it has valid public use cases where creating an interval between two arbitrary naive_date_times with a given precision is a requirement. Consider making...
I wonder if you would consider PRs for the following two proposals? I am the author of the [ex_cldr](https://github.com/elixir-cldr) libraries. With the recent work by @maennchen, we now have good...
`Nx` has a more [feature-rich implementation](https://github.com/elixir-nx/nx/blob/2eeb6178d2669a1b3f2bae83058a57c252f110b9/nx/lib/nx/tensor.ex#L37-L153) of the `Access` behaviour. In particular it allows slicing the matrix. @cocoa-xu has done a [similar implementation in eVision](https://github.com/cocoa-xu/evision/blob/main/lib/evision_mat.ex#L438-L613) that I propose now also...
Using Roar/Representable 2.3, 2.4 and 3.0. Rails apps but would seem unrelated. Representable is serialising Properties when are themselves Representable. For example below an instance of User is assigned to...
I would like to contribute some documentation that clarifies the expected image format to `Bumblebee.Vision.image_classification`. The type `t:Bumblebee.Vision.image` says: > @type image() :: Nx.Container.t() A term representing an image. Either...
Adds a note to the README about JSON limitations supporting some Postgres data types like composite and range types.
An imaging playground in Livebook would be great for experimenting with image transformations. [eVision](https://hex.pm/packages/evision) is now doing this for several of the ML models.
Mask matching is digit by digit therefore the mask itself must resolve to a list of single digits. This is ok: ```elixir iex> ~TEMPO"13X{0..9}Y1Q"W ~o"13X{0..9}Y33M"W ``` This is not: ```elixir...