Viewing profile — l-m-z
l-m-z
HN member- Joined
- Fri, Sep 21, 2018, 11:48 AM UTC
- HN karma
- 127
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About l-m-z
No profile information was provided.
Recent public activity
-
comment
Comment #44465018
Hibiki is an auto-regressive model with temperature based sampling so very similar to a LLM, generations are "random" and you can make them deterministic by fixing the RNG seed.
-
comment
Comment #41586240
Hi swyx, laurent from kyutai here. We actually used the online demo at moshi.chat for the live event (the original demo), so same quantization. We updated the weights on the online…
- story
-
comment
Comment #39976485
Candle dev here, we also support training/backdrop! We certainly focus on optimizing inference performance but hopefully that should improve the training efficiency too.
- story
- story
-
comment
Comment #37054752
The tensors should be Send and Sync so can be manipulated from multiple threads, the underlying data is protected by a RWLock to guard against data races. The heavy operations such…
-
comment
Comment #36846283
Another random (self) plug for a rust version, this uses the candle ML library we've been working on for the last month and can be run in the browser. https://laurentmazare.github.…
- story
-
story
Show HN: Stable Diffusion implementation in Rust/libtorch
This is an implementation of Stable Diffusion in Rust using libtorch bindings - including some nice samples of rusty robots! It follows the lines of Huggingface's (amazing) diffuse…
- story
-
comment
Comment #20196135
This is from yesterday's (June the 15th) workshop on self-supervised learning at ICML. The video of this talk can be seen here: https://www.facebook.com/icml.imls/videos/2030095370…
- story
-
comment
Comment #18950159
(I'm obviously biased as being the author of ocaml-torch) Using functional programming is not of much help for size mismatches, the current bindings don't even use the type system …
-
comment
Comment #18949921
Bindings author here. This should support most of the PyTorch ops - this is done by automatically generating the binding code as there are more than a thousand of these. Most of th…