# `WhisperCt2.Word`
[🔗](https://github.com/rubas/whisper_ct2/blob/v0.5.0/lib/whisper_ct2/word.ex#L1)

One word produced by `:word_timestamps`.

Times are absolute seconds within the input audio. `probability` is the
mean of per-token acoustic probabilities from the DTW alignment pass.

# `t`

```elixir
@type t() :: %WhisperCt2.Word{
  end: float(),
  probability: float(),
  start: float(),
  text: String.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
