Live data from Hacker News

Viewing profile — osaariki

osaariki

HN member
Joined
Tue, Oct 31, 2017, 7:54 AM UTC
HN karma
163
Public activity
38 items

About osaariki

Senior Researcher at Microsoft Research

Recent public activity

  1. comment
    Comment #48137759

    That 200k is a reasonable amount to start withdrawing from a 5M portfolio (exactly the 4% rule from the Trinity study [1]), but you’ll want to adjust it for inflation every year. M…

  2. comment
    Comment #48000981

    TUIs are great for low friction remote work. I do a lot of data processing work on remote VMs with a mix of interactive debugging/eyeballing and bulk jobs. TUIs are a great fit for…

  3. comment
    Comment #46332750

    You're exactly right. The llguidance library [1,2] seems to have emerged as the go-to solution for this by virtue of being >10X faster than its competition. It's work from some pas…

  4. comment
    Comment #45819160

    I live half way across the world from my folks so I don’t see them often. I’d love something that gives me a greater sense of presence than a video call can give.

  5. comment
    Comment #43236514

    We don’t know that LLMs generating tokens for scenarios involving simulations of conscious don’t already involve such experience. Certainly such threads of consciousness would curr…

  6. comment
    Comment #42578307

    For some interesting context: this paper was a precursor to all the work on synthetic data at Microsoft Research that lead to the Phi series of SLMs. [1] It was an important demons…

  7. comment
    Comment #41112808

    Edge's Password Monitor feature uses homomorphic encryption to match passwords against a database of leaks without revealing anything about those passwords: https://www.microsoft.c…

  8. comment
    Comment #36805383

    I'm not familiar with how TypeChat works, but Guidance [1] is another similar project that can actually integrate into the token sampling to enforce formats. [1]: https://github.co…

  9. comment
    Comment #35059706

    We have an early tool paper [1] for a previous version of the engine, but that's short and with POSIX semantics, so doesn't include a lot of the interesting stuff. The most relevan…

  10. comment
    Comment #35058237

    We built the new engine behind .NET's RegexOptions.NonBacktracking with derivatives. We will have a paper at PLDI this year on the work that went into that. PCRE semantics was inde…

  11. comment
    Comment #34506001

    I'd love for someone to do a good quality PyTorch enabled implementation of Sampled AlphaZero/MuZero [1]. RLLib has an AlphaZero, but it doesn't have the parallelized MCTS you real…

  12. comment
    Comment #31141069

    The in-place update work in Koka [1] is super impressive. One of my co-workers, Daan Leijen leads the Koka project and hearing his talks about it have been such a privilege. The wo…

  13. comment
    Comment #27519026

    I've done work on low-latency FHE neural network inferencing [1] and we estimated the FLOPS to be approximately 4 times that of an Intel 8087 floating point coprocessor [2]. This w…

  14. comment
    Comment #27007397

    I found this article confusing too. Being on a tech news site I expected it to eventually get to something concrete, perhaps producing chimeric colors [1] for an impactful moment -…

  15. comment
    Comment #26537565

    The article touches on DFA based engines and notes that they may not be the fastest in all use cases. To expand on that generally the reason for this would be that the automaton yo…

  16. comment
    Comment #26421761

    I do research on FHE. On a high level querying works by evaluating an equivalence function between the encrypted query key and keys in the database such that the result is 1 if the…

  17. comment
    Comment #26394697

    Exactly. And the magic is that now you can securely compute aggregations of data you've stored without having to download all of your data. Say you have some field in all of your e…

  18. comment
    Comment #26394638

    This is not how homomorphic encryptions works. The schemes in use are not deterministic.

  19. comment
    Comment #26394525

    More than 2^5 has already been demonstrated with GPU implementations, so they definitely do mean 10^5.

  20. comment
    Comment #26393680

    CPU is currently a rather natural baseline as the various GPU implementations are still somewhat preliminary. I'm not quite an expert on the implementation challenges around FHE (I…

  21. comment
    Comment #26393593

    Homomorphic encryption (HE) is NOT what people would understand as "on-chip cryptography", i.e., secure enclaves. HE is a form of encryption that allows arithmetic operations on en…

  22. comment
    Comment #25193876

    Hi! I'm one of the main researchers on this project. If anyone has any questions about the EVA compiler or homomorphic encryption in general I'd be happy to answer.

  23. story
  24. comment
    Comment #23436774

    Both BGV and CKKS are so called batched schemes, which allows you to pack multiple values into a single ciphertext (typically thousands) and perform operations on all of the values…

  25. comment
    Comment #21641402

    You're quite correct that evaluating the back propagation could be done exactly the same as the forward pass. However, if you want to train for more than a handful of steps you'll …