Alex Parrill
Alex Parrill
Workaround: Comment out the line `print_stats('Dataset', ctx, train_ds, dev_ds, test_ds, compute_length=True)` in `create_raw_dataset.py` It loads all the files just to print some stats to you, during which there's no feedback....
@srewai I'm making several code changes to hopefully resolve some of the inefficiencies in the training dataset creator, but I'm running into other issues atm. I'll publish a fork when...
A simple way to speed this up is to call out to ffmpeg in `AudioDatasetWriter` rather than doing the conversions in Python (which is slow).
Having the same issue on Arch Linux sublime text.
If I'm reading the OpenGL 3.3 spec right (section 4.4.4), `RGB32F` and `R32F` are color-renderable there. So this is backend-dependent.
Was hoping to use this in a WASM project by implementing a sender that uses JS functions but I guess that isn't happening.
Might take a stab at this, because I really want to use this crate in my web app. My idea was to have the sender specify a type to wrap...
So this will require a bit of a refactor around the Client, Sender, and SniffedNodes. Basically: * `SyncSender` would need to return a result, * `AsyncSender` would need to return...
FYI I haven't tested this too hardly yet, but I'm planning on working on a project that makes use of this crate on WASM, so that should exercise all the...
Yes, you can implement your own sender in your own crate. Example for wasm using stdweb: https://gitlab.com/colonelthirtytwo/elastic-stdweb-rs IMO I'd rather keep syncsender around; tokio and the async stuff is a...