Live data from Hacker News

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

About l-m-z

No profile information was provided.

Recent public activity

  1. 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.

  2. 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…

  3. story
  4. 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.

  5. story
  6. story
  7. 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…

  8. 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.…

  9. story
  10. 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…

  11. story
  12. 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…

  13. story
  14. 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 …

  15. 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…