maz

maz

Nx and Whisper, "cannot build an empty tensor"

Using the live_beats transcoding as a basis for this code, I’m transcribing an audio file. Sometimes, though, the very last segment will fail the entire batch run because it will attempt to transcribe silence.

cannot build an empty tensor

[error] Task #PID<0.2261.0> started from #PID<0.1557.0> terminating
** (ArgumentError) cannot build an empty tensor
    (nx 0.6.4) lib/nx.ex:2062: Nx.from_binary/3
    (cool_app 1.5.1) lib/cool_app/multimedia/audio.ex:10: anonymous fn/3 in CoolApp.Audio.speech_to_text/3
    (elixir 1.14.2) lib/task/supervised.ex:89: Task.Supervised.invoke_mfa/2
    (elixir 1.14.2) lib/task/supervised.ex:34: Task.Supervised.reply/4
    (stdlib 4.2) proc_lib.erl:240: :proc_lib.init_p_do_apply/3
Function: &:erlang.apply/2
    Args: [#Function<0.33943372/1 in CoolApp.Audio.speech_to_text/3>, [3740]]

I’d like to catch the error and ignore it, possbily in the Enum.map. I thought of a case do but I want to avoid generating a nil and having that returned.

Suggestions on how to “escape hatch” out of this and avoid losing the batch job?

cribbed from live_beats:

  def speech_to_text(path, chunk_time, func) do
    {:ok, stat} = CoolApp.MP3Stat.parse(path)

    0..stat.duration//chunk_time
    |> Task.async_stream(
      fn ss ->
        args = ~w(-ac 1 -ar 16k -f f32le -ss #{ss} -t #{chunk_time} -v quiet -)
        {data, 0} = System.cmd("ffmpeg", ["-i", path] ++ args)
        {ss, Nx.Serving.batched_run(WhisperServing, Nx.from_binary(data, :f32))}
      end,
      max_concurrency: 2,
      timeout: :infinity
    )
    |> Enum.map(fn 
      {:ok, {ss, %{results: [%{text: text}]}}} -> func.(ss, text) 
    end)
  end

First Post! Switch mode

maz

maz

I made a workaround which seems to fix the problem when an empty tensor is generated(it happens when the audio ends precisely at a moment divisible by 20 seconds).

      0..stat.duration//chunk_time
      |> dbg()
      |> Task.async_stream(
        fn ss ->
          args = ~w(-ac 1 -ar 16k -f f32le -ss #{ss} -t #{chunk_time} -v quiet -)
          {data, 0} = System.cmd("ffmpeg", ["-i", path] ++ args)
+          if byte_size(data) > 0 do
+            {ss, Nx.Serving.batched_run(WhisperServing, Nx.from_binary(data, :f32))}
+          else
+            {ss, ""}
+          end
        end,
        max_concurrency: 2,
        timeout: :infinity
      )
      |> Enum.map(fn
+        {:ok, {ss, %{results: [%{text: text}]}}} ->
+          func.(ss, text)
+        {:ok, {ss, ""}} ->
+          func.(ss, "")
      end)
— All posts loaded —

Where Next?

Trending in Questions Top

jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
silverdr
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated! To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead. Sta...
New
saveman71
Hello ! We want new/edit form pages to POST/PUT to their own URL rather than the resources REST defaults (post /things, put /things/:id)...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement