Jonatan Kłosko
Jonatan Kłosko
Whisper may hallucinate text when an audio chunk is silence or noise (see https://github.com/elixir-nx/bumblebee/issues/377#issuecomment-2208521942). The openai-whisper implementation has `no_speech_threshold` and `logprob_threshold` that may be related. By a quick search there...
Currently Livebook formats the code without respecting any plugins or formatter options. We could add `Kino.formatter_options(...)` with options matching `.formatter.exs`. The logic would be similar to the `mix format` task....
Implements the changes from #8945.
See the discussion in https://github.com/erlang/otp/pull/8945#discussion_r1806260645. Currently `erl_anno:end_location(Anno)` is inferred from `location` and `text` (if present). However, this means that in order to store a location range, we always need to...
Implements suggestions from https://github.com/erlang/otp/pull/8945.
When converting a large VegaLite spec, the JS runtime OOMs and results in a crash. See https://github.com/vega/vl-convert/commit/4ee79be082a412f113eb30a07f11eb0522d130ae for an example reproducing this. This is the output: Output ``` $ cargo...
Hello, thank you for this fantastic package! The following modified example from `vl-convert-rs` results in a segfault: ```rust use vl_convert_rs::converter::VlOpts; use vl_convert_rs::{VlConverter, VlVersion}; #[tokio::main] async fn main() { let vl_spec:...
Bumps XLA to recent revision. We were still using the oldest API for defining custom calls and now a bunch of deprecation errors have been logged. I went ahead and...
Currently ERB (Ruby templates) are highlighted wrongly as if they where entirely Ruby. This bug probably applies to other mixed grammars. This was an issue in the past and was...
Sometimes exceptions are expected. For example, `Ecto.NoResultsError` is raised when `Repo.get!` finds no result, but it implements the [Plug.Exception](https://hexdocs.pm/plug/Plug.Exception.html) protocol, and therefore is converted to a 404 response. Currently the...