Christopher Fleetwood
Christopher Fleetwood
This changes the old format for instantiating Maps from `.iter().cloned().collect()` to the new `BTreeMap::from` syntax introduced in Rust 1.56. Please feel free to reject if this jump in MSRV (1.49...
Hi there, Wondering if you can share your reasoning behind using AdamW over AdaFactor? Thanks for sharing the script. Regards, Chris
This takes the project from dumb to magic. Top tier repo here from which we can learn a lot: https://github.com/wavey-ai/mel-spec
Your peak memory usage when using WASM is your memory usage for the rest of time, see https://github.com/WebAssembly/design/issues/1397 This means we need to load from IndexedDB in chunks, to reduce...
Because the javascript world is completely fucking insane, it has come to my attention that we aren't really shipping the best isomorphic packages for downstream users. This guy seems to...
In order to be a drop-in replacement for OAI, we need to replicate the transcribe interface ```python def transcribe( model: "Whisper", audio: Union[str, np.ndarray, torch.Tensor], *, verbose: Optional[bool] = None,...